using System.ComponentModel.DataAnnotations; namespace Hutopy.Modules.Creators.Data; public class Socials { [MaxLength(2048)] public string? FacebookUrl { get; set; } [MaxLength(2048)] public string? InstagramUrl { get; set; } [MaxLength(2048)] public string? XUrl { get; set; } [MaxLength(2048)] public string? LinkedInUrl { get; set; } [MaxLength(2048)] public string? TikTokUrl { get; set; } [MaxLength(2048)] public string? YoutubeUrl { get; set; } [MaxLength(2048)] public string? RedditUrl { get; set; } [MaxLength(2048)] public string? WebsiteUrl { get; set; } }