2023-08-16 22:32:16 +08:00

32 lines
845 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AIMS
{
[Serializable]
public class ExportConfig
{
public string Title { get; set; }
public string Path { get; set; }
public int FontSize { get; set; }
public bool Landscape { get; set; }
public List<ExportItem> Exports { get; set; }
}
public class ExportItem
{
public string Name { get; set; }
public string Text { get; set; }
public int Width { get; set; }
public bool IsVisible { get; set; }
public bool IsPrint { get; set; }
public int PrintWidth { get; set; }
public int PrintSize { get; set; }
public string PrintName { get; set; }
public int ColumnOrder { get; set; }
}
}