11 lines
338 B
C#
11 lines
338 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Hutopy.Infrastructure.Identity.OwnedEntities;
|
|
|
|
public class StoredDataUrls
|
|
{
|
|
[MaxLength(255)] public string? BannerPictureUrl { get; set; }
|
|
[MaxLength(255)] public string? ProfilePictureUrl { get; set; }
|
|
[MaxLength(255)] public string? WebsiteIconUrl { get; set; }
|
|
}
|