Database changes for syncshell changes

This commit is contained in:
defnotken
2025-09-16 09:52:15 -05:00
parent d7e8be97ff
commit 81261fae49
7 changed files with 1307 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LightlessSyncShared.Models;
public class GroupProfile
{
public string GroupGID { get; set; }
public Group Group { get; set; }
public string Description { get; set; }
public string Tags { get; set; }
public string Base64GroupProfileImage { get; set; }
}