22 lines
513 B
C#
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; }
|
|
} |