using System.Security.Cryptography; namespace LawFirmDataModels.Models { public interface IDocumentModel : IId { string DocumentName { get; } double Price { get; } Dictionary DocumentBlanks { get; } } }