1
0
mirror of synced 2024-12-04 02:37:18 +01:00
GC-local-server-rewrite/Shared/Models/PlayOptionData.cs
2023-02-18 01:29:20 +08:00

12 lines
257 B
C#

using Shared.Dto.Api;
namespace Shared.Models;
public class PlayOptionData
{
public long CardId { get; set; }
public FirstPlayOptionDto OptionPart1 { get; set; } = new();
public SecondPlayOptionDto OptionPart2 { get; set; } = new();
}