16 lines
293 B
C#
Raw Normal View History

2024-05-11 19:49:12 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MotorPlantDataModels.Models
{
2024-06-22 10:15:15 +04:00
public interface ISupplyModel
{
int ShopId { get; }
int EngineId { get; }
int Count { get; }
}
}