13 lines
199 B
C#
13 lines
199 B
C#
|
using System;
|
||
|
|
||
|
namespace HRM.BO
|
||
|
{
|
||
|
public class Box
|
||
|
{
|
||
|
public int Width;
|
||
|
public int Height;
|
||
|
public System.Drawing.Color LineColor;
|
||
|
public int LineWidth;
|
||
|
}
|
||
|
}
|