Add storedDataUrls to GetCurrentUser

This commit is contained in:
Dominic Villemure
2024-06-30 12:39:24 -04:00
parent 2603582286
commit 90d76c32ce
5 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
namespace Hutopy.Application.Users.Models;
public class StoredDataUrlsModel
{
public string BannerPictureUrl { get; set; } = string.Empty;
public string ProfilePictureUrl { get; set; } = string.Empty;
public string WebsiteIconUrl { get; set; } = string.Empty;
}