You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
947 B
45 lines
947 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BWPMModels
|
|
{
|
|
|
|
public class User
|
|
{
|
|
public int ID { get; set; } = 0;
|
|
|
|
public string username { get; set; } = "";
|
|
|
|
public string passwort { get; set; } = "";
|
|
|
|
public int? usertype { get; set; } = 0;
|
|
|
|
public bool? provisorisch { get; set; } = true;
|
|
|
|
public string email { get; set; } = "";
|
|
|
|
public int? firmanr { get; set; } = 0;
|
|
|
|
public int? lehrernr { get; set; } = 0;
|
|
|
|
public string verifystring { get; set; } = "";
|
|
|
|
public int? mutierer { get; set; } = 0;
|
|
|
|
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
|
|
|
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
|
|
|
public bool? aktiv { get; set; } = true;
|
|
|
|
public int? mandantnr { get; set; } = 0;
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|