Files
FA_WEB/SytelineSaAppEfDataModel/Entities/WzClient.cs
2025-09-30 21:18:34 +02:00

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; }
}