сделал пользователей
All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 1m26s
Create and publish a Docker image / Deploy image (push) Successful in 37s

This commit is contained in:
2023-12-23 18:34:51 +03:00
parent a1019db433
commit 6a32bc4fa9
2 changed files with 94 additions and 26 deletions

View File

@ -30,6 +30,22 @@ public class UserPost
public string TelegramBotUrl { get; set; } = null!;
}
public class UserPut
{
public string Id { get; set; } = null!;
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 class PostMeetingDto
{
public DateTime Time { get; set; }