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

10 lines
233 B
C#

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