Files
Multiplechoicetrainer/MultipleChoiceTrainer/Models/HomeViewModel.cs

15 lines
342 B
C#

using MultipleChoiceTrainer.Models.DataModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MultipleChoiceTrainer.Models
{
public class HomeViewModel
{
public IList<Category> Categories { get; set; }
public int SelectedCategoryId { get; set; }
}
}