Adds user Alias. Make StoredDataUrls optionals.
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
namespace Hutopy.Infrastructure.Identity.OwnedEntities;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Hutopy.Infrastructure.Identity.OwnedEntities;
|
||||
|
||||
public class StoredDataUrls
|
||||
{
|
||||
public string BannerPictureUrl { get; set; } = string.Empty;
|
||||
public string ProfilePictureUrl { get; set; } = string.Empty;
|
||||
public string WebsiteIconUrl { get; set; } = string.Empty;
|
||||
[MaxLength(255)] public string? BannerPictureUrl { get; set; }
|
||||
[MaxLength(255)] public string? ProfilePictureUrl { get; set; }
|
||||
[MaxLength(255)] public string? WebsiteIconUrl { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user