GokaPek 2af5c30a4f 2
2024-02-14 00:11:21 +04:00

11 lines
240 B
C#

namespace LawFirmDataModels.Models
{
public interface IDocumentModel : IId
{
string DocumentName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> DocumentComponents { get; }
}
}