1.0.5 Manueller Login

This commit is contained in:
2024-10-14 17:33:17 +02:00
parent 17be817e23
commit a0cf93b5c7
5 changed files with 155 additions and 35 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Jugenddienst_Stunden.Types;
public class User {
public int id { get; set; }
public string name { get; set; }
public string surname { get; set; }
public string token { get; set; }
}