13 lines
256 B
C#
13 lines
256 B
C#
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
|
|
}
|