namespace DbFirst.BlazorWebApp.Models; public class CatalogReadDto { 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; } }