Созданы проекты DataModels и Contracts

This commit is contained in:
2024-02-25 18:41:53 +04:00
parent 6ca8999f68
commit fc59da0008
8 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace SecuritySystemDataModels.Models
{
public interface ISecureModel : IId
{
string SecureName { get; }
double Price { get; }
Dictionary<int, (IComponentModel, int)> SecureComponents { get; }
}
}