12 lines
268 B
C#
12 lines
268 B
C#
|
using System.Security.Cryptography;
|
|||
|
|
|||
|
namespace LawFirmDataModels.Models
|
|||
|
{
|
|||
|
public interface IDocumentModel : IId
|
|||
|
{
|
|||
|
string DocumentName { get; }
|
|||
|
double Price { get; }
|
|||
|
Dictionary<int, (IBlankModel, int)> DocumentBlanks { get; }
|
|||
|
}
|
|||
|
}
|