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,23 +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 Campaign : INotifyPropertyChanged
{
public string Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string OwnerId { get; set; }
public ObservableCollection<string> SessionIds { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
public event PropertyChangedEventHandler PropertyChanged;
}
}