13 lines
351 B
C#
13 lines
351 B
C#
namespace SytelineSaAppEfDataModel.Entities;
|
|
|
|
public class WzHeader
|
|
{
|
|
public Guid ID { get; set; }
|
|
public Guid? FK_Client { get; set; }
|
|
public DateTime CreatedDate { get; set; }
|
|
public string? EmailAddresses { get; set; }
|
|
public string? WzNumbers { get; set; }
|
|
|
|
// Navigation property
|
|
public WzClient Client { get; set; }
|
|
} |