* 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,11 @@
namespace SytelineSaAppEfDataModel.Entities;
public class WzHeader
{
public Guid ID { get; set; }
public Guid? FK_Client { get; set; }
public DateTime CreatedDate { get; set; }
// Navigation property
public WzClient Client { get; set; }
}