PIbd-21_Afanasev_S.S_MotorP.../MotorPlant/MotorPlantDataModels/ISupplyModel.cs
2024-04-05 00:00:17 +04:00

16 lines
293 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MotorPlantDataModels.Models
{
public interface ISupplyModel
{
int ShopId { get; }
int EngineId { get; }
int Count { get; }
}
}