mirror of
https://github.com/D4M13N-D3V/comissions-app-core-api.git
synced 2025-03-14 10:04:55 +00:00
40 lines
1.8 KiB
C#
40 lines
1.8 KiB
C#
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; }
|
|
public string PortfolionHeaderImageUrl { get; set; }
|
|
public bool PortfolionHeaderUseImage { get; set; }
|
|
public int PortfolionHeaderSize { get; set; }
|
|
public string PortfolionHeaderColor { get; set; }
|
|
public string PortfolionHeaderText { 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; }
|
|
} |