2022-06-21 01:49:47 +08:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using SharedProject.enums;
|
2022-04-12 03:08:03 +08:00
|
|
|
|
|
2022-04-24 02:29:55 +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; }
|
|
|
|
|
}
|