18 lines
368 B
C#
18 lines
368 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ComputerStoreDataModels.Models
|
|
{
|
|
public interface IRequestModel : IID
|
|
{
|
|
int? OrderID { get; }
|
|
int? PCID { get; }
|
|
double Price { get; }
|
|
|
|
public List<(IComponentModel, int)> RequestComponents { get; }
|
|
}
|
|
}
|