SUBD/Forum/ForumContracts/ViewModels/TopicViewModel.cs

19 lines
415 B
C#
Raw Normal View History

2023-04-28 19:49:36 +04:00
using ForumDataModels;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ForumContracts.ViewModels
{
public class TopicViewModel : ITopicModel
{
[DisplayName("Название темы")]
public string Name { get; set; } = string.Empty;
public int Id { get; set; }
}
}