2023-02-17 00:38:01 +08:00
|
|
|
|
using Domain.Enums;
|
|
|
|
|
|
2023-02-18 01:29:20 +08:00
|
|
|
|
namespace Shared.Dto.Api;
|
2023-02-17 00:38:01 +08:00
|
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
}
|