Archived
Private
Public Access
1
0

Initial commit

This commit is contained in:
2022-09-04 12:03:44 +02:00
commit 15f48d259f
91 changed files with 22716 additions and 0 deletions

21
Backend/Entitys/User.cs Normal file
View File

@@ -0,0 +1,21 @@
using System;
namespace Backend.Entitys;
public class User : UserEditor {
public Guid Id { get; set; }
public DateTime Created { get; set; }
}
public class UserLogin {
public string UsernameOrEmail { get; set; }
public string Password { get; set; }
}
public class UserEditor {
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}