namespace DbFirst.Domain.Entities; public partial class VwmyCatalog { public int Guid { get; set; } public string CatTitle { get; set; } = String.Empty; public string CatString { get; set; } = String.Empty; public string AddedWho { get; set; } = String.Empty; public DateTime AddedWhen { get; set; } public string? ChangedWho { get; set; } public DateTime? ChangedWhen { get; set; } }