Files
blazor-swm/Data/Entities/CustomerCategory.cs
T
2026-07-21 14:35:37 +07:00

10 lines
237 B
C#

using Indotalent.Data.Abstracts;
using Indotalent.Data.Interfaces;
namespace Indotalent.Data.Entities;
public class CustomerCategory : BaseEntity
{
public string? Name { get; set; }
public string? Description { get; set; }
}