Files
upo-senior-assistant/SeniorAssistant/Models/Register.cs
2018-12-14 16:39:45 +01:00

16 lines
349 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SeniorAssistant.Models
{
public class Register
{
public string Username { get; set; }
public string Email { get; set; }
public string Password { get; set; }
public bool Doctor { get; set; }
}
}