15 lines
266 B
C#
Raw Permalink Normal View History

2024-06-16 15:06:30 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FishFactoryDataModels.Models
{
public interface ISupplyModel
{
int ShopId { get; }
int CannedId { get; }
int Count { get; }
}
}