17 lines
267 B
C#
17 lines
267 B
C#
|
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; }
|
|||
|
}
|
|||
|
|
|||
|
}
|