ISEbd-21.Gordeev.I.V.SushiB.../SushiBar/SushiBarDataModels/Models/ISupplyModel.cs

15 lines
289 B
C#
Raw Normal View History

2024-03-15 19:52:21 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PizzeriaDataModels.Models
{
public interface ISupplyModel
{
int ShopId { get; }
int SushiId { get; }
int Count { get; }
}
}