Neil67's picture
Deploy Bakery ERP Space
13240d3
Raw
History Blame Contribute Delete
312 Bytes
namespace BakeryErp.Domain.Entities;
public sealed class Store : BaseEntity
{
public string Code { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public StoreType StoreType { get; set; }
public string? Phone { get; set; }
public string? Address { get; set; }
}