10 lines
240 B
C#
10 lines
240 B
C#
namespace SecuritySystemDataModels.Models
|
|
{
|
|
public interface ISecureModel : IId
|
|
{
|
|
string SecureName { get; }
|
|
double Price { get; }
|
|
Dictionary<int, (IComponentModel, int)> SecureComponents { get; }
|
|
}
|
|
}
|