21 lines
579 B
C#
21 lines
579 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LightlessSyncShared.Models;
|
|
public class GroupProfile
|
|
{
|
|
[Key]
|
|
[MaxLength(20)]
|
|
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; }
|
|
public bool IsNSFW { get; set; } = false;
|
|
public bool ProfileDisabled { get; set; } = false;
|
|
}
|