2022-04-24 02:29:55 +08:00
|
|
|
|
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
|
|
|
|
|
{
|
|
|
|
|
public long CardId { get; set; }
|
|
|
|
|
|
|
|
|
|
public PlayOptions.FastSlowIndicator FastSlowIndicator { get; set; }
|
|
|
|
|
|
|
|
|
|
public PlayOptions.FeverTranceShow FeverTrance { get; set; }
|
|
|
|
|
}
|