13 lines
218 B
C#
13 lines
218 B
C#
using System;
|
|
|
|
namespace service;
|
|
|
|
[Serializable]
|
|
public class PostDto
|
|
{
|
|
public int Id { get; set; }
|
|
public int UserId { get; set; }
|
|
public string Title { get; set; }
|
|
public string Body { get; set; }
|
|
}
|