16 lines
280 B
C#
Raw Permalink Normal View History

2024-05-12 13:03:07 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantDataModels.Models
{
public interface ISupplyModel
{
int ShopId { get; }
int ReinforcedId { get; }
int count { get; }
}
}