PIbd_23_Valova_A._D._SushiBar/SushiBar/SushiBarDataModels/Models/ISupplyModel.cs

16 lines
290 B
C#
Raw Normal View History

2024-03-26 23:20:22 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarDataModels.Models
{
public interface ISupplyModel
{
int ShopId { get; }
int SushiId { get; }
int Count { get; }
}
}