2023-02-17 18:29:20 +01:00
|
|
|
|
using Shared.Dto.Api;
|
|
|
|
|
|
|
|
|
|
namespace Shared.Models;
|
2023-02-16 17:38:01 +01:00
|
|
|
|
|
|
|
|
|
public class PlayOptionData
|
|
|
|
|
{
|
|
|
|
|
public long CardId { get; set; }
|
|
|
|
|
|
|
|
|
|
public FirstPlayOptionDto OptionPart1 { get; set; } = new();
|
|
|
|
|
|
|
|
|
|
public SecondPlayOptionDto OptionPart2 { get; set; } = new();
|
|
|
|
|
}
|