Spaces:
Sleeping
Sleeping
File size: 312 Bytes
13240d3 | 1 2 3 4 5 6 7 8 9 10 11 | 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; }
}
|