44 lines
1.5 KiB
C#
44 lines
1.5 KiB
C#
using Resources;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Weee.Areas.Admin.ViewModels
|
|
{
|
|
public class AccountWebSiteInfoSetViewModel
|
|
{
|
|
public int ID { get; set; }
|
|
|
|
[Display(Name = "Address", ResourceType = typeof(Resource))]
|
|
public string footerAddress { get; set; }
|
|
|
|
[Display(Name = "Phone", ResourceType = typeof(Resource))]
|
|
public string footerPhone { get; set; }
|
|
|
|
[Display(Name ="Fax", ResourceType = typeof(Resource))]
|
|
public string footerFax { get; set; }
|
|
|
|
[Display(Name = "Email", ResourceType = typeof(Resource))]
|
|
public string footerEmail { get; set; }
|
|
|
|
[Display(Name = "Copyright", ResourceType = typeof(Resource))]
|
|
public string footerCopyright { get; set; }
|
|
|
|
[Display(Name = "LoginBackgroundImage", ResourceType = typeof(Resource))]
|
|
public string loginImagePath { get; set; }
|
|
|
|
[Display(Name = "LoginText1", ResourceType = typeof(Resource))]
|
|
public string text1welcome { get; set; }
|
|
|
|
[Display(Name = "LoginText2", ResourceType = typeof(Resource))]
|
|
public string text2Qcarbon { get; set; }
|
|
|
|
[Display(Name = "LoginBackgroundImageStyle", ResourceType = typeof(Resource))]
|
|
public string loginImageStyle { get; set; }
|
|
[Display(Name = "LoginImageBackGroundColor", ResourceType = typeof(Resource))]
|
|
public string loginImageBackGroundColor { get; set; }
|
|
|
|
}
|
|
} |