2023-03-26 14:36:35 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ConstructionCompanyDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IMaterialModel : IId
|
|
|
|
|
{
|
2023-03-26 19:14:28 +04:00
|
|
|
|
string MaterialName { get; }
|
2023-03-26 14:36:35 +04:00
|
|
|
|
int Quantity { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|