using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Threading.Tasks;
|
|
namespace zhengcaioa.Models
|
{
|
|
public class SiteConfig
|
{
|
private static string _siteName;
|
public static string SiteName
|
{
|
get
|
{
|
return "政采招投标咨询";
|
}
|
|
set
|
{
|
_siteName = value;
|
}
|
}
|
private static string _keywords;
|
public static string Keywords
|
{
|
get
|
{
|
return _keywords; ;
|
}
|
|
set
|
{
|
_keywords = value;
|
}
|
}
|
private static string _description;
|
public static string Description
|
{
|
get
|
{
|
return _description;
|
}
|
|
set
|
{
|
_description = value;
|
}
|
}
|
|
private static string _author;
|
public static string Author
|
{
|
get
|
{
|
return _author;
|
}
|
|
set
|
{
|
_author = value;
|
}
|
}
|
|
private static string _shortcutIcon;
|
public static string ShortcutIcon
|
{
|
get
|
{
|
return "/img/logo.png?v=3";
|
}
|
|
set
|
{
|
_shortcutIcon = value;
|
}
|
}
|
}
|
}
|