mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-09 20:09:31 +02:00
15 lines
416 B
C#
15 lines
416 B
C#
using Discord;
|
|
using Discord.Interactions;
|
|
|
|
namespace DiscordApp.Justice.Modals
|
|
{
|
|
public class IPassportGetter : IModal
|
|
{
|
|
public string Title => "Поиск паспорта";
|
|
[InputLabel("Данные паспорта")]
|
|
[ModalTextInput("passport", TextInputStyle.Short, placeholder: "yawaflua или 97652", maxLength: 100)]
|
|
public string passport { get; set; }
|
|
|
|
}
|
|
}
|