test to make server

This commit is contained in:
Artemy
2026-02-08 22:30:29 +07:00
parent cc2921d257
commit 0a43e35797
56 changed files with 949 additions and 442 deletions
@@ -0,0 +1,7 @@
namespace Govor.Contracts.DTOs;
public class AvatarUpdatePayload
{
public Guid UserId { get; set; }
public Guid IconId { get; set; }
}
@@ -0,0 +1,7 @@
namespace Govor.Contracts.DTOs;
public class DescriptionUpdatePayload
{
public Guid UserId { get; set; }
public string? Description { get; set; }
}
+1
View File
@@ -6,4 +6,5 @@ public class UserProfileDto
public string Username { get; set; } = string.Empty;
public string? Description { get; set; }
public Guid? IconId { get; set; }
public bool IsOnline { get; set; }
}