PIbd-21_Potapov_N.S._Securi.../SecuritySystem/SecuritySystemDataModels/Models/ISecureModel.cs

10 lines
240 B
C#
Raw Normal View History

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