1
0
mirror of synced 2024-11-24 06:20:12 +01:00
GC-local-server-rewrite/Shared/Dto/Api/FirstPlayOptionDto.cs
2023-02-18 01:29:20 +08:00

16 lines
335 B
C#

using Domain.Enums;
namespace Shared.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; }
}