* Created Entities, Dtos and Mapping for WzClient and WzHeader

This commit is contained in:
2025-05-07 21:21:02 +02:00
parent 9f38998135
commit 1f08ae05f0
12 changed files with 215 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace SytelineSaAppEfDataModel.Dtos;
public class WzHeaderDto
{
public Guid ID { get; set; }
public Guid? FK_Client { get; set; }
public DateTime CreatedDate { get; set; }
}