You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ShopNCook/Core/RecipeInformation.cs

36 lines
1.2 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShoopNCook.Core
{
internal class RecipeInformation
{
private string name;
private string description;
private Uri image;
private float averageNote;
private int cookTimeMinutes;
private int caloriesPerGuest;
public RecipeInformation(string name, string description, Uri image, float averageNote, int cookTimeMinutes, int caloriesPerGuest)
{
this.name = name;
this.description = description;
this.image = image;
this.averageNote = averageNote;
this.cookTimeMinutes = cookTimeMinutes;
this.caloriesPerGuest = caloriesPerGuest;
}
public string Name { get => name; }
public string Description { get => description; }
public Uri Image { get => image; }
public float AverageNote { get => averageNote; }
public int CookTimeMinutes { get => cookTimeMinutes; }
public int CaloriesPerGuest { get => caloriesPerGuest; }
}
}