9 lines
237 B
C#
9 lines
237 B
C#
namespace SecureShopDataModels.Models
|
|
{
|
|
public interface ISecureModel : IId
|
|
{
|
|
string SecureName { get; }
|
|
double Price { get; }
|
|
Dictionary<int, (IFacilitiesModel, int)> SecureFacilitiess { get; }
|
|
}
|
|
} |