DAS_2024_1/dozorova_alena_lab_3/PostService/Entities.cs

17 lines
267 B
C#
Raw Normal View History

2024-09-26 11:04:52 +04:00
namespace PostService
{
public class Post
{
public Guid Id { get; set; }
public string Name { get; set; }
}
public class PostDTO : Post { }
public class CreateUpdatePost
{
public string Name { get; set; }
}
}