SushiBarBase/SushiBar/SushiBarDataModels/Models/IShopModel.cs

10 lines
189 B
C#
Raw Normal View History

2024-02-28 17:12:10 +04:00
namespace SushiBarDataModels.Models
{
public interface IShopModel
{
string ShopName { get; }
string Address { get; }
DateTime DateCreate { get; }
}
}