namespace CutList.Web.Data.Entities; public class Supplier { public int Id { get; set; } public string Name { get; set; } = string.Empty; public string? ContactInfo { get; set; } public string? Notes { get; set; } public bool IsActive { get; set; } = true; public DateTime CreatedAt { get; set; } = DateTime.UtcNow; public ICollection Stocks { get; set; } = new List(); }