Files
social-media/src/Infrastructure/Identity/OwnedEntities/StoredDataUrls.cs
2024-07-22 00:42:27 -04:00

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