14 lines
222 B
C#
14 lines
222 B
C#
using System;
|
|
|
|
namespace Payroll.BO
|
|
{
|
|
[Serializable]
|
|
public class Box
|
|
{
|
|
public int Width;
|
|
public int Height;
|
|
public System.Drawing.Color LineColor;
|
|
public int LineWidth;
|
|
}
|
|
}
|