Getting ready to seed more data
This commit is contained in:
@@ -1,22 +1,26 @@
|
||||
using MessagePack;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
|
||||
|
||||
[MessagePackObject]
|
||||
public class SpecialRotationSetting
|
||||
{
|
||||
[JsonPropertyName("rotation_id")]
|
||||
[Key("rotation_id")]
|
||||
public int RotationId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Formatted as 'setid|setid|setid...'.
|
||||
/// </summary>
|
||||
[JsonPropertyName("card_set_ids")]
|
||||
[Key("card_set_ids")]
|
||||
public string CardSetIds { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Formatted as 'abilityid|abilityid|abilityid...'.
|
||||
/// </summary>
|
||||
[JsonPropertyName("abilities")]
|
||||
[Key("abilities")]
|
||||
public string Abilities { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user