📄 placeinfo.cs
字号:
namespace Org.InteliIM.Activities.Weather
{
/// <summary>
/// 地域信息
/// </summary>
public class PlaceInfo
{
/// <summary>
/// 构造函数
/// </summary>
public PlaceInfo()
{
}
private string continent;
/// <summary>
/// 洲
/// </summary>
public string Continent
{
get
{
return this.continent;
}
set
{
this.continent = value;
}
}
private string country;
/// <summary>
/// 国家
/// </summary>
public string Country
{
get
{
return this.country;
}
set
{
this.country = value;
}
}
private string province;
/// <summary>
/// 省份
/// </summary>
public string Province
{
get
{
if(this.province == null)
this.province = "";
return this.province;
}
set
{
this.province = value;
}
}
private string city;
/// <summary>
/// 城市
/// </summary>
public string City
{
get
{
if(this.city == null)
this.city = "";
return this.city;
}
set
{
this.city = value;
}
}
private string region;
/// <summary>
/// 区域
/// </summary>
public string Region
{
get
{
if(this.region == null)
this.region = "";
return this.region;
}
set
{
this.region = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -