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; } }