Made tags an array of integers instead of strings

This commit is contained in:
CakeAndBanana
2025-10-19 18:53:31 +02:00
parent 477f5aa6e7
commit d72cc207e1
5 changed files with 36 additions and 33 deletions

View File

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