2024-06-16 15:06:30 +04:00

15 lines
266 B
C#

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; }
}
}