📄 placeinfo.cs
字号:
namespace Org.InteliIM.Applications.MiniTools.Weather
{
/// <summary>
/// The place information.
/// </summary>
public class PlaceInfo
{
/// <summary>
/// Initializes a new instance of the PlaceInfo class.
/// </summary>
public PlaceInfo()
{
}
private string continent;
/// <summary>
/// Gets or sets the continent.
/// </summary>
public string Continent
{
get
{
return this.continent;
}
set
{
this.continent = value;
}
}
private string country;
/// <summary>
/// Gets or sets the country.
/// </summary>
public string Country
{
get
{
return this.country;
}
set
{
this.country = value;
}
}
private string province;
/// <summary>
/// Gets or sets the province.
/// </summary>
public string Province
{
get
{
if(this.province == null)
this.province = "";
return this.province;
}
set
{
this.province = value;
}
}
private string city;
/// <summary>
/// Gets or sets the city.
/// </summary>
public string City
{
get
{
if(this.city == null)
this.city = "";
return this.city;
}
set
{
this.city = value;
}
}
private string region;
/// <summary>
/// Gets or sets the region.
/// </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 + -