using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace IStation.Model
|
{
|
/// <summary>
|
/// 自定义尺寸
|
/// </summary>
|
public class CustomSize:JsonModel<CustomSize>
|
{
|
|
/// <summary>
|
///
|
/// </summary>
|
public CustomSize() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public CustomSize(double width, double height)
|
{
|
this.Width = width;
|
this.Height = height;
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
public CustomSize(CustomSize rhs)
|
{
|
this.Width = rhs.Width;
|
this.Height = rhs.Height;
|
}
|
|
/// <summary>
|
/// 宽度
|
/// </summary>
|
public double Width { get; set; }
|
|
/// <summary>
|
/// 高度
|
/// </summary>
|
public double Height { get; set; }
|
}
|
}
|