16 lines
290 B
C#
Raw Normal View History

2024-02-28 12:17:42 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarDataModels.Models
{
2024-02-28 12:24:48 +04:00
public interface ISupplyModel
2024-02-28 12:17:42 +04:00
{
2024-02-28 12:24:48 +04:00
int ShopId { get; }
int SushiId { get; }
int Count { get; }
2024-02-28 12:17:42 +04:00
}
}