26 lines
727 B
C#
26 lines
727 B
C#
//using Microsoft.Office.Interop.Excel;
|
|
namespace UniMarc
|
|
{
|
|
|
|
public class MacEditorParameter
|
|
{
|
|
public string ISBN13 { get; set; }
|
|
public string URL { get; set; }
|
|
public int MarcIdx { get; set; }
|
|
public string User { get; set; }
|
|
public string SaveDate { get; set; }
|
|
public int ListIdx { get; set; }
|
|
|
|
public string BookName { get; set; }
|
|
public string Author { get; set; }
|
|
public string Publisher { get; set; }
|
|
public int Price { get; set; }
|
|
|
|
|
|
public string text008 { get; set; }
|
|
public string tag056 { get; set; }
|
|
public bool NewMake { get; set; }
|
|
public string OriginalMarc { get; set; }
|
|
}
|
|
|
|
} |