2024-04-30 23:50:04 +04:00

18 lines
363 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using FishFactoryDataModels.Models;
namespace FishFactoryContracts.BindingModels
{
public class SupplyBindingModel : ISupplyModel
{
public int ShopId { get; set; }
public int CannedID { get; set; }
public int Count { get; set; }
}
}