9 lines
193 B
C#
9 lines
193 B
C#
namespace LawFirmDataModels.Models
|
|
{
|
|
public interface ILawModel : IId
|
|
{
|
|
string LawName { get; }
|
|
double Price { get; }
|
|
Dictionary<int, (IComponentModel, int)> LawComponents { get; }
|
|
}
|
|
} |