Added get of group profile, removed group from model. redone group data.

This commit is contained in:
CakeAndBanana
2025-09-17 02:38:20 +02:00
parent f5b03846fe
commit deea39d621
3 changed files with 13 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ public static class Extensions
{
public static GroupData ToGroupData(this Group group)
{
return new GroupData(group.GID, group.Alias, group.CreatedDate, group.Profile.Description, group.Profile.Tags, group.Profile.Base64GroupProfileImage);
return new GroupData(group.GID, group.Alias, group.CreatedDate);
}
public static UserData ToUserData(this GroupPair pair)