добавил патенты, верификацию, сделал паспорта, ип ооо

This commit is contained in:
Дмитрий Шиманский
2023-10-29 21:23:50 +03:00
parent 60fcf04532
commit 7c3e88376b
28 changed files with 1814 additions and 71 deletions

View File

@@ -0,0 +1,49 @@
using Discord;
using Discord.Interactions;
namespace DiscordApp.Justice.Modals
{
public class INewIndividualEntrepreneur : IModal
{
public string Title => "Регистрация ИП";
[InputLabel("ID паспорта")]
[ModalTextInput("nickname", TextInputStyle.Short, placeholder: "96534", maxLength: 10)]
public string passportId { get; set; }
[InputLabel("Название")]
[ModalTextInput("Name", TextInputStyle.Short, placeholder: "ИП Оганесян", maxLength: 100)]
public string Name { get; set; }
[InputLabel("Тип деятельности")]
[ModalTextInput("Type", TextInputStyle.Short, placeholder: "Продажа", maxLength: 200)]
public string BiznessType { get; set; }
[InputLabel("Номер карты")]
[ModalTextInput("cardNumber", TextInputStyle.Short, placeholder: "70835", maxLength: 100)]
public int CardNumber { get; set; }
}
public class INewBizness : IModal
{
public string Title => "Регистрация ИП";
[InputLabel("ID паспорта")]
[ModalTextInput("nickname", TextInputStyle.Short, placeholder: "96534", maxLength: 10)]
public string passportId { get; set; }
[InputLabel("Название")]
[ModalTextInput("Name", TextInputStyle.Short, placeholder: "ИП Оганесян", maxLength: 100)]
public string Name { get; set; }
[InputLabel("Тип деятельности")]
[ModalTextInput("Type", TextInputStyle.Short, placeholder: "Продажа", maxLength: 200)]
public string BiznessType { get; set; }
[InputLabel("Участники(через запятую)")]
[ModalTextInput("Employee", TextInputStyle.Short, placeholder: "96534, 12742", maxLength: 200)]
public string BiznessEmployee { get; set; }
[InputLabel("Номер карты")]
[ModalTextInput("cardNumber", TextInputStyle.Short, placeholder: "70835", maxLength: 100)]
public int CardNumber { get; set; }
}
}