aleksandr chegodaev 3055f22db6 lab1
2024-04-13 01:58:54 +04:00

9 lines
193 B
C#

namespace LawFirmDataModels.Models
{
public interface ILawModel : IId
{
string LawName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> LawComponents { get; }
}
}