FileSettings
using System.Runtime.CompilerServices;
namespace kCura.WinEDDS.ImportExtension
{
public class FileSettings
{
[CompilerGenerated]
private bool _OIFileIdMapped;
[CompilerGenerated]
private string _IDColumnName;
[CompilerGenerated]
private string _TypeColumnName;
[CompilerGenerated]
private bool _FileSizeMapped;
[CompilerGenerated]
private string _FileSizeColumn;
[CompilerGenerated]
private string _FileNameColumn;
[CompilerGenerated]
private string _SupportedByViewerColumn;
public bool OIFileIdMapped { get; set; }
public string IDColumnName { get; set; }
public string TypeColumnName { get; set; }
public bool FileSizeMapped { get; set; }
public string FileSizeColumn { get; set; }
public string FileNameColumn { get; set; }
public string SupportedByViewerColumn { get; set; }
}
}