namespace DbFirst.Domain.Entities; public class SmfLayout { public long Guid { get; set; } public bool Active { get; set; } public string LayoutType { get; set; } = string.Empty; public string LayoutKey { get; set; } = string.Empty; public string UserName { get; set; } = string.Empty; public byte[] LayoutData { get; set; } = Array.Empty(); public string AddedWho { get; set; } = string.Empty; public DateTime AddedWhen { get; set; } public string? ChangedWho { get; set; } public DateTime? ChangedWhen { get; set; } }