namespace DbFirst.BlazorWebApp.Models; public class MassDataReadDto { public int Id { get; set; } public string CustomerName { get; set; } = string.Empty; public decimal Amount { get; set; } public string Category { get; set; } = string.Empty; public bool StatusFlag { get; set; } public DateTime AddedWhen { get; set; } public DateTime? ChangedWhen { get; set; } }