40 lines
1.8 KiB
C#
Raw Normal View History

namespace comissions.app.api.Models.SellerProfile;
public class SellerProfilePageSettingsModel
{
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; }
}