Windows-App

This commit is contained in:
2024-10-21 16:01:37 +02:00
parent 08a3550062
commit 959804eb9d
42 changed files with 93 additions and 8 deletions

View File

@@ -5,6 +5,9 @@ using Jugenddienst_Stunden.Types;
using System.Windows.Input;
namespace Jugenddienst_Stunden.ViewModels;
/// <summary>
/// Viewmodel für die einzelnen Stundeneinträge / Bearbeitung
/// </summary>
public class StundeViewModel : ObservableObject, IQueryAttributable {
public int Id { get; set; }

View File

@@ -12,7 +12,7 @@ using System.Windows.Input;
namespace Jugenddienst_Stunden.ViewModels;
/// <summary>
/// Stundenliste
/// ViewModel für die Stundenliste
/// </summary>
internal class StundenViewModel : ObservableObject, IQueryAttributable, INotifyPropertyChanged {