16 lines
349 B
C#
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; }
|
|
}
|
|
}
|