1
0
mirror of synced 2025-02-21 20:59:39 +01:00

12 lines
268 B
C#
Raw Normal View History

using SharedProject.enums;
2022-04-12 03:08:03 +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; }
}