авторизация
This commit is contained in:
@ -0,0 +1,6 @@
|
||||
public class PostUserWriteToMetingDto
|
||||
{
|
||||
public String UserId { get; set; } = null!;
|
||||
|
||||
public String MeetingId { get; set; } = null!;
|
||||
}
|
17
CyberBoom/DbContext/Dtos/User/StatsData.cs
Normal file
17
CyberBoom/DbContext/Dtos/User/StatsData.cs
Normal file
@ -0,0 +1,17 @@
|
||||
public class StatsData
|
||||
{
|
||||
public double Hours{ get; set; }
|
||||
|
||||
public int Count { get; set; }
|
||||
|
||||
public List<TagStats> StatsByTag { get; set; } = new List<TagStats>();
|
||||
|
||||
public class TagStats
|
||||
{
|
||||
public string Tag { get; set; } = null!;
|
||||
|
||||
public int Count { get; set; }
|
||||
|
||||
public double Hours { get; set; }
|
||||
}
|
||||
}
|
12
CyberBoom/DbContext/Dtos/User/UserPost.cs
Normal file
12
CyberBoom/DbContext/Dtos/User/UserPost.cs
Normal file
@ -0,0 +1,12 @@
|
||||
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!;
|
||||
}
|
14
CyberBoom/DbContext/Dtos/User/UserPut.cs
Normal file
14
CyberBoom/DbContext/Dtos/User/UserPut.cs
Normal file
@ -0,0 +1,14 @@
|
||||
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!;
|
||||
}
|
Reference in New Issue
Block a user