Files
2020-06-10 19:27:01 +02:00

15 lines
343 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; }
}
}