2023-04-01 12:10:46 +04:00
|
|
|
|
using FoodOrdersDataModels.Enums;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HardwareShopDataModels.Models
|
|
|
|
|
{
|
2023-04-01 12:26:05 +04:00
|
|
|
|
public interface IBuildModel : IId
|
2023-04-01 12:10:46 +04:00
|
|
|
|
{
|
|
|
|
|
decimal Price { get; }
|
|
|
|
|
|
|
|
|
|
string BuildName { get; }
|
|
|
|
|
|
|
|
|
|
int UserID { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|