41 lines
1.9 KiB
C#
Raw Normal View History

2024-06-15 03:10:24 -04:00
namespace comissions.app.api.Models.SellerProfile;
2024-02-19 04:50:48 -05:00
public class ArtistPageSettingsModel
{
public string RequestButtonHoverBGColor { get; set; }
public string RequestButtonTextColor { get; set; }
public string RequestButtonBGColor { get; set; }
public string RequestTermsColor { get; set; }
public string RequestBackgroundColor { get; set; }
public string RequestHeaderImageUrl { get; set; }
public bool RequestHeaderUseImage { get; set; }
public int RequestHeaderSize { get; set; }
public string RequestHeaderColor { get; set; }
public string RequestHeaderText { get; set; }
public int PortfolioMaximumSize { get; set; }
public bool PortfolioEnabledScrolling { get; set; }
public int PortfolioColumns { get; set; }
public bool PortfolioMasonry { get; set; }
public string PortfolioBackgroundColor { get; set; }
2024-02-18 19:29:29 -05:00
public string PortfolioHeaderImageUrl { get; set; }
public bool PortfolioHeaderUseImage { get; set; }
2024-02-18 19:32:56 -05:00
public int PortfolioHeaderSize { get; set; }
2024-02-18 19:29:29 -05:00
public string PortfolioHeaderColor { get; set; }
public string PortfolioHeaderText { get; set; }
public int DescriptionTextSize { get; set; }
public string DescriptionTextColor { get; set; }
public string DescriptionBackgroundColor { get; set; }
public string DescriptionHeaderImageUrl { get; set; }
public bool DescriptionHeaderUseImage { get; set; }
public int DescriptionHeaderSize { get; set; }
public string DescriptionHeaderColor { get; set; }
public string DescriptionHeaderText { get; set; }
public string HeaderImageUrl { get; set; }
public bool HeaderUseImage { get; set; }
public int HeaderTextSize { get; set; }
public string HeaderColor { get; set; }
public string BackgroundColor { get; set; }
public string RequestButtonHoverTextColor { get; set; }
2024-02-20 00:47:44 -05:00
public ArtistModel? Artist { get; set; }
}