9 lines
193 B
C#
Raw Normal View History

2024-04-13 01:58:54 +04:00
namespace LawFirmDataModels.Models
{
public interface ILawModel : IId
{
string LawName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> LawComponents { get; }
}
}