Initial commit
This commit is contained in:
44
Models/User.cs
Normal file
44
Models/User.cs
Normal 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;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user