1
0
mirror of synced 2025-02-15 18:22:37 +01:00

12 lines
268 B
C#

using SharedProject.enums;
namespace SharedProject.models;
public class PlayOption
{
public long CardId { get; set; }
public PlayOptions.FastSlowIndicator FastSlowIndicator { get; set; }
public PlayOptions.FeverTranceShow FeverTrance { get; set; }
}