SushiBarBase/SushiBar/SushiBarDataModels/Models/IShopModel.cs
2024-02-28 17:12:10 +04:00

10 lines
189 B
C#

namespace SushiBarDataModels.Models
{
public interface IShopModel
{
string ShopName { get; }
string Address { get; }
DateTime DateCreate { get; }
}
}