namespace DbFirst.Application.Catalogs; public class CatalogDto { public int Guid { get; set; } public string CatTitle { get; set; } = null!; public string CatString { get; set; } = null!; public string AddedWho { get; set; } = null!; public DateTime AddedWhen { get; set; } public string? ChangedWho { get; set; } public DateTime? ChangedWhen { get; set; } }