19 lines
398 B
C#
Raw Normal View History

2024-05-05 21:43:24 +04:00
using MotorPlantDataModels;
using MotorPlantDataModels.Models;
using System;
2024-05-01 21:35:57 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MotorPlantDataModels.Models
{
2024-05-05 21:43:24 +04:00
public interface IShopModel : IId
{
2024-06-03 01:11:08 +04:00
string ShopName { get; }
string Adress { get; }
DateTime DateOpen { get; }
int MaxCount { get; }
}
2024-05-01 21:35:57 +04:00
}