Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/SpecialRotationSetting.cs
2024-09-12 00:35:31 -04:00

22 lines
513 B
C#

using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject]
public class SpecialRotationSetting
{
[Key("rotation_id")]
public int RotationId { get; set; }
/// <summary>
/// Formatted as 'setid|setid|setid...'.
/// </summary>
[Key("card_set_ids")]
public string CardSetIds { get; set; }
/// <summary>
/// Formatted as 'abilityid|abilityid|abilityid...'.
/// </summary>
[Key("abilities")]
public string Abilities { get; set; }
}