Renames ProfileColors to Colors

This commit is contained in:
Jonathan Bourdon
2024-08-06 02:55:00 -04:00
parent 7cd7ae3080
commit f46d1146e1
10 changed files with 96 additions and 96 deletions

View File

@@ -11,7 +11,7 @@ public class Creator
public About About { get; set; } = new();
public Socials Socials { get; set; } = new();
public ProfileColors ProfileColors { get; set; } = new();
public Colors Colors { get; set; } = new();
public Images Images { get; set; } = new();
}
@@ -21,7 +21,7 @@ public class About
[MaxLength(2048)] public string? Description { get; set; }
}
public class ProfileColors
public class Colors
{
[MaxLength(9)] public string? BannerTop { get; set; }
[MaxLength(9)] public string? BannerBottom { get; set; }