PIbd-23_Abazov_A.A._Constru.../ConstructionCompany/ConstructionCompanyDataModels/Models/IMaterialModel.cs

15 lines
284 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConstructionCompanyDataModels.Models
{
public interface IMaterialModel : IId
{
string Name { get; }
int Quantity { get; }
}
}