DTOs for index mostly done, doing DB models
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user