using System;
namespace Dongke.WinForm.Controls.InvoiceLayout
{
///
///
///
[Serializable]
public class RectangleItem : GraphicsItem
{
#region 构造函数
///
/// 构造函数
///
internal RectangleItem()
: this(null)
{
}
///
/// 构造函数
///
/// Layoutbox
internal RectangleItem(LayoutBox box)
: base(box, ItemType.Rectangle)
{
}
#endregion 构造函数
}
}