namespace LawFirmDataModels.Models { public interface ILawModel : IId { string LawName { get; } double Price { get; } Dictionary LawComponents { get; } } }