7 lines
284 B
C#
7 lines
284 B
C#
namespace LightlessSync.Services;
|
|
|
|
public record LightlessGroupProfileData(string Base64ProfilePicture, string Description, int[] Tags, bool IsNsfw, bool IsDisabled)
|
|
{
|
|
public Lazy<byte[]> ImageData { get; } = new Lazy<byte[]>(Convert.FromBase64String(Base64ProfilePicture));
|
|
}
|