Vereinsmeisterschaften  22aa7800eae54b428d40e835886cefe1fdefdfdf
This is a software that can be used to manage the internal competition of the swimming club Illertissen called "Vereinsmeisterschaften".
Loading...
Searching...
No Matches
FriendGroupViewModel.cs
1using System.Collections.ObjectModel;
2using CommunityToolkit.Mvvm.ComponentModel;
4
6{
10 public partial class FriendGroupViewModel : ObservableObject
11 {
15 [ObservableProperty]
16 private int _groupId;
17
21 [ObservableProperty]
22 private ObservableCollection<Person> _friends = new ObservableCollection<Person>();
23
27 [ObservableProperty]
28 private ObservableCollection<Person> _availableFriends = new ObservableCollection<Person>();
29 }
30}
ObservableCollection< Person > _availableFriends
List of available friends for the friend group.
ObservableCollection< Person > _friends
List of friends in the friend group.