marco.pms.api/Marco.Pms.Model/Inventory/ProductCategoryMaster.cs

11 lines
349 B
C#

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;
}
}