Initial commit

This commit is contained in:
GuiNerd
2019-11-27 18:42:43 -03:00
commit 5fd7176543
1714 changed files with 171249 additions and 0 deletions

22
SitePi/Models/Quiz.cs Normal file
View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using SitePi.Models;
namespace SitePi.Models
{
public class Quiz
{
[Key]
public int Id { get; set; }
[Required]
public string Name { get; set; }
public List<Question> Questions { get; set; }
}
}