初始化数据库模型

This commit is contained in:
2025-10-18 14:53:04 +08:00
7 changed files with 58 additions and 5 deletions
+8
View File
@@ -0,0 +1,8 @@
namespace IM_API.Dtos
{
public class TestDto
{
public int Id { get; set; }
public string Name { get; set; }
}
}