1
0
mirror of synced 2025-02-11 16:33:03 +01:00
GC-local-server-rewrite/Application/Dto/Api/FirstPlayOptionDto.cs
2023-02-17 00:38:01 +08:00

16 lines
340 B
C#

using Domain.Enums;
namespace Application.Dto.Api;
public class FirstPlayOptionDto
{
public long CardId { get; set; }
public long AvatarId { get; set; }
public int TitleId { get; set; }
public ShowFastSlowOption ShowFastSlowOption { get; set; }
public ShowFeverTranceOption ShowFeverTranceOption { get; set; }
}