16 lines
439 B
C#
16 lines
439 B
C#
using System.Text.Json.Serialization;
|
|
using SharedProject.enums;
|
|
|
|
namespace SharedProject.models;
|
|
|
|
public class PlayOption
|
|
{
|
|
[JsonPropertyName(nameof(CardId))]
|
|
public long CardId { get; set; }
|
|
|
|
[JsonPropertyName(nameof(FastSlowIndicator))]
|
|
public PlayOptions.FastSlowIndicator FastSlowIndicator { get; set; }
|
|
|
|
[JsonPropertyName(nameof(FeverTrance))]
|
|
public PlayOptions.FeverTranceShow FeverTrance { get; set; }
|
|
} |