18 lines
363 B
C#
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; }
|
|
}
|
|
}
|