19 lines
338 B
C#
19 lines
338 B
C#
using FoodOrdersDataModels.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HardwareShopDataModels.Models
|
|
{
|
|
public interface IBuildModel
|
|
{
|
|
decimal Price { get; }
|
|
|
|
string BuildName { get; }
|
|
|
|
int UserID { get; }
|
|
}
|
|
}
|