3900-MyRecipes-backup / Server / Models / RecipeMealType.cs
RecipeMealType.cs
Raw
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace MyRecipes2.Server.Models
{
    public class RecipeMealType
    {
        public int Id { get; set; }

        public MealType MealType { get; set; }
    }
}