11 lines
232 B
C#
11 lines
232 B
C#
using Domain.Common;
|
|
|
|
namespace Domain.Entities;
|
|
|
|
public class Warehouse : BaseEntity
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public bool? SystemWarehouse { get; set; } = false;
|
|
}
|