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