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