This commit is contained in:
35
source/bizobjects/AyaLib/GZTW.AyaNova.BLL/ReportLayout.cs
Normal file
35
source/bizobjects/AyaLib/GZTW.AyaNova.BLL/ReportLayout.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user