10 lines
286 B
C#
10 lines
286 B
C#
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; }
|
|
}
|