2
0

Some small improvements for clarity.

* PostModel -> PostDto
* 404 test case
* README
This commit is contained in:
2026-02-18 10:41:52 +01:00
parent f1c0021ad3
commit c3c8c85afe
4 changed files with 6 additions and 6 deletions

12
service/PostDto.cs Normal file
View File

@@ -0,0 +1,12 @@
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; }
}