12 lines
268 B
C#
Raw Permalink Normal View History

2024-02-13 23:46:41 +04:00
using System.Security.Cryptography;
namespace LawFirmDataModels.Models
{
public interface IDocumentModel : IId
{
string DocumentName { get; }
double Price { get; }
Dictionary<int, (IBlankModel, int)> DocumentBlanks { get; }
}
}