36 lines
896 B
C#
36 lines
896 B
C#
using System;
|
|
|
|
namespace GZTW.AyaNova.BLL
|
|
{
|
|
#pragma warning disable 1591
|
|
|
|
/// <summary>
|
|
/// Contains a portable report
|
|
/// layout design.
|
|
///
|
|
/// Used for serializing and de-serializing the design of a report
|
|
/// (i.e. importing and exporting reports outside the program)
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ReportLayout
|
|
{
|
|
private Guid mID;
|
|
public Guid ID{get{return mID;}set{mID=value;}}
|
|
|
|
private string mName;
|
|
public string Name{get{return mName;}set{mName=value;}}
|
|
|
|
private string mReportKey;
|
|
public string ReportKey{get{return mReportKey;}set{mReportKey=value;}}
|
|
|
|
private int mReportSize;
|
|
public int ReportSize{get{return mReportSize;}set{mReportSize=value;}}
|
|
|
|
private byte[] mReportContent;
|
|
public byte[] ReportContent{get{return mReportContent;}set{mReportContent=value;}}
|
|
|
|
|
|
}
|
|
#pragma warning restore 1591
|
|
}
|