namespace Marco.Pms.Model.Inventory { public class ProductCategoryMaster { public Guid Id { get; set; } public string Name { get; set; } = default!; public string Description { get; set; } = default!; public string ShortName { get; set; } = "PCM"; public bool IsActive { get; set; } = true; } }