Files
LightlessClient/LightlessSync/Services/CharaData/Models/HandledCharaDataEntry.cs
2025-08-22 13:07:48 +09:00

7 lines
263 B
C#

namespace LightlessSync.Services.CharaData.Models;
public sealed record HandledCharaDataEntry(string Name, bool IsSelf, Guid? CustomizePlus, CharaDataMetaInfoExtendedDto MetaInfo)
{
public CharaDataMetaInfoExtendedDto MetaInfo { get; set; } = MetaInfo;
}