2023-12-24 12:33:51 +03:00

15 lines
334 B
C#

public class UserPost
{
public IFormFile Avatar { get; set; } = null!;
public string Fio { get; set; } = null!;
public string Username { get; set; } = null!;
public string Specialities { get; set; } = null!;
public string TelegramBotUrl { get; set; } = null!;
public string Email { get; set; } = null!;
}