PIbd-22-Ismailov_SUBD/BlogDataModels/BlogContracts/ViewModels/TopicViewModel.cs

21 lines
458 B
C#
Raw Normal View History

2023-09-06 22:02:39 +04:00
using BlogDataModels;
2023-09-06 20:46:57 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-09-06 22:02:39 +04:00
namespace BlogContracts.ViewModels
2023-09-06 20:46:57 +04:00
{
public class TopicViewModel : ITopicModel
{
[DisplayName("Название темы")]
public string Name { get; set; } = string.Empty;
public int Id { get; set; }
public int CategoryId { get; set; }
}
}