17 lines
395 B
C#
17 lines
395 B
C#
|
using CanteenDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace CanteenContracts.BindingModels
|
|||
|
{
|
|||
|
public class IngredientBindingModel : IIngredientModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string IngredientName { get; set; } = string.Empty;
|
|||
|
public double IngredientCost { get; set; }
|
|||
|
}
|
|||
|
}
|