Initial commit

This commit is contained in:
2021-05-26 19:04:05 +02:00
commit 5dcd0d1046
483 changed files with 614430 additions and 0 deletions

44
Models/User.cs Normal file
View File

@@ -0,0 +1,44 @@
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? altiv { get; set; } = true;
public int? mandantnr { get; set; } = 0;
}
}