17 lines
408 B
C#
17 lines
408 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Cryptography;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SecuritySystemDataModels.Models
|
|
{
|
|
public interface IManufactureModel : IId
|
|
{
|
|
string ManufactureName { get; }
|
|
double Price { get; }
|
|
Dictionary<int, (IComponentModel, int)> ManufactureComponents { get; }
|
|
}
|
|
}
|