Initial commit
This commit is contained in:
12
MealPlan.Api/Models/MealCategory.cs
Normal file
12
MealPlan.Api/Models/MealCategory.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace MealPlan.Api.Models;
|
||||
|
||||
/// <summary>
|
||||
/// Meal categories. Integer values map directly to the "MealCategory" column on "Recipes".
|
||||
/// </summary>
|
||||
public enum MealCategory
|
||||
{
|
||||
Breakfast = 0,
|
||||
SecondBreakfast = 1,
|
||||
Lunch = 2,
|
||||
Dinner = 3
|
||||
}
|
||||
Reference in New Issue
Block a user