AIMS/AIMS/OremrUserControl/ExportConfig.cs
2023-03-17 09:48:50 +08:00

30 lines
779 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AIMS
{
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; }
}
}