Projekt aufgeräumt

This commit is contained in:
NoKnownName
2025-05-23 10:40:04 +02:00
parent 3fafc10742
commit 624f7287c0
56 changed files with 83 additions and 521 deletions

View File

@@ -1,21 +0,0 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models
{
public class User : INotifyPropertyChanged
{
public string Id { get; set; }
public string Username { get; set; }
public string Email { get; set; }
public ObservableCollection<string> CharacterIds { get; set; }
public ObservableCollection<string> SessionIds { get; set; }
public event PropertyChangedEventHandler PropertyChanged;
}
}