Старт работ.

This commit is contained in:
Programmist73 2023-02-28 09:55:56 +04:00
parent b187f20196
commit 807966a19d

View File

@ -0,0 +1,22 @@
using BlacksmithWorkshopDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BlacksmithWorkshopDataModels.Models
{
//интерфес сущности "Магазин"
public interface IStoreModel
{
//название магазина
string StoreName { get; }
//адрес магазина
string Address { get; }
//дата открытия магазина
DateTime DateOpen { get; }
}
}