-
Notifications
You must be signed in to change notification settings - Fork 0
/
Recipe.cs
33 lines (28 loc) · 961 Bytes
/
Recipe.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CramOMatic
{
class Recipe
{
[System.ComponentModel.DisplayName("First Input")]
public InputItem FirstInput { get; set; }
[System.ComponentModel.DisplayName("Second Input")]
public InputItem SecondInput { get; set; }
[System.ComponentModel.DisplayName("Third Input")]
public InputItem ThirdInput { get; set; }
[System.ComponentModel.DisplayName("Fourth Input")]
public InputItem FourthInput { get; set; }
public OutputItem Output { get; set; }
public Recipe(InputItem input1, InputItem input2, InputItem input3, InputItem input4, OutputItem output)
{
FirstInput = input1;
SecondInput = input2;
ThirdInput = input3;
FourthInput = input4;
Output = output;
}
}
}