Files
blazor-oms/Data/Entities/Warehouse.cs
T
2026-07-21 13:38:38 +07:00

11 lines
286 B
C#

using Indotalent.Data.Abstracts;
using Indotalent.Data.Interfaces;
namespace Indotalent.Data.Entities;
public class Warehouse : BaseEntity
{
public string? Name { get; set; }
public string? Description { get; set; }
public bool? SystemWarehouse { get; set; } = false;
}