13 lines
286 B
C#
13 lines
286 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!;
|
|
}
|