2022-06-20 19:49:47 +02:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using SharedProject.enums;
|
2022-04-11 21:08:03 +02:00
|
|
|
|
|
2022-04-23 20:29:55 +02:00
|
|
|
|
namespace SharedProject.models;
|
2022-04-11 21:08:03 +02:00
|
|
|
|
|
|
|
|
|
public class PlayOption
|
|
|
|
|
{
|
2022-06-20 19:49:47 +02:00
|
|
|
|
[JsonPropertyName(nameof(CardId))]
|
2022-04-11 21:08:03 +02:00
|
|
|
|
public long CardId { get; set; }
|
|
|
|
|
|
2022-06-20 19:49:47 +02:00
|
|
|
|
[JsonPropertyName(nameof(FastSlowIndicator))]
|
2022-04-11 21:08:03 +02:00
|
|
|
|
public PlayOptions.FastSlowIndicator FastSlowIndicator { get; set; }
|
|
|
|
|
|
2022-06-20 19:49:47 +02:00
|
|
|
|
[JsonPropertyName(nameof(FeverTrance))]
|
2022-04-11 21:08:03 +02:00
|
|
|
|
public PlayOptions.FeverTranceShow FeverTrance { get; set; }
|
2022-07-05 18:52:38 +02:00
|
|
|
|
|
|
|
|
|
[JsonPropertyName(nameof(AvatarId))]
|
|
|
|
|
public long AvatarId { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName(nameof(NavigatorId))]
|
|
|
|
|
public long NavigatorId { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName(nameof(TitleId))]
|
|
|
|
|
public long TitleId { get; set; }
|
2022-04-11 21:08:03 +02:00
|
|
|
|
}
|