6 lines
99 B
C#
6 lines
99 B
C#
public class FoodItem
|
|
{
|
|
public string Name { get; set; }
|
|
public int Energy { get; set; }
|
|
}
|