Files
PL_JusticeBot/Justice/Modals/PassportGetterModals.cs
Дмитрий Шиманский dde8b38520 updated
2023-11-09 00:24:18 +03:00

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; }
}
}