SUBD_Aleikin/Restaurant/RestaurantDataModels/Models/IProviderModel.cs
Артём Алейкин e52b239c08 BusinessLogic,
Contracts,
DataModels,
View(пока пусто)
2023-05-02 22:51:41 +04:00

16 lines
278 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RestaurantDataModels.Models
{
public interface IProviderModel : IId
{
string Name { get; }
string Address { get; }
}
}