namespace CutList.Web.Data.Entities; public class Material { public int Id { get; set; } public string Shape { get; set; } = string.Empty; public string Size { get; set; } = string.Empty; public string? Description { get; set; } public bool IsActive { get; set; } = true; public DateTime CreatedAt { get; set; } = DateTime.UtcNow; public DateTime? UpdatedAt { get; set; } public ICollection StockItems { get; set; } = new List(); public ICollection StockLengths { get; set; } = new List(); public ICollection ProjectParts { get; set; } = new List(); public string DisplayName => $"{Shape} - {Size}"; }