1
0
mirror of synced 2025-01-31 20:25:22 +01:00

16 lines
439 B
C#
Raw Normal View History

2022-06-21 01:49:47 +08:00
using System.Text.Json.Serialization;
using SharedProject.enums;
2022-04-12 03:08:03 +08:00
namespace SharedProject.models;
2022-04-12 03:08:03 +08:00
public class PlayOption
{
2022-06-21 01:49:47 +08:00
[JsonPropertyName(nameof(CardId))]
2022-04-12 03:08:03 +08:00
public long CardId { get; set; }
2022-06-21 01:49:47 +08:00
[JsonPropertyName(nameof(FastSlowIndicator))]
2022-04-12 03:08:03 +08:00
public PlayOptions.FastSlowIndicator FastSlowIndicator { get; set; }
2022-06-21 01:49:47 +08:00
[JsonPropertyName(nameof(FeverTrance))]
2022-04-12 03:08:03 +08:00
public PlayOptions.FeverTranceShow FeverTrance { get; set; }
}