1
0
mirror of synced 2024-12-04 18:48:00 +01:00
GC-local-server-rewrite/Shared/Models/PlayOptionData.cs

12 lines
257 B
C#
Raw Normal View History

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();
}