2
0
Files
Simon Dellenbach c3c8c85afe Some small improvements for clarity.
* PostModel -> PostDto
* 404 test case
* README
2026-02-18 10:41:52 +01:00

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; }
}