Added nsfw in group profile editor.

This commit is contained in:
CakeAndBanana
2025-10-19 16:55:42 +02:00
parent 280c80d89f
commit edb7232b17
4 changed files with 26 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
namespace LightlessSync.Services;
public record LightlessGroupProfileData(string Base64ProfilePicture, string Description, string Tags)
public record LightlessGroupProfileData(string Base64ProfilePicture, string Description, string Tags, bool IsNsfw, bool IsDisabled)
{
public Lazy<byte[]> ImageData { get; } = new Lazy<byte[]>(Convert.FromBase64String(Base64ProfilePicture));
}