12 lines
361 B
C#
12 lines
361 B
C#
namespace SytelineSaAppEfDataModel.Entities;
|
|
|
|
public class WzClient
|
|
{
|
|
public Guid ID { get; set; }
|
|
public string CustomerNumber { get; set; }
|
|
public int? CustomerSequence { get; set; }
|
|
public DateTime CreatedDate { get; set; }
|
|
public string Name { get; set; }
|
|
public string ShortName { get; set; }
|
|
public byte[]? Logo { get; set; }
|
|
} |