30 lines
657 B
C#
30 lines
657 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace KGdev.BI3D.Revit.DataExporter.JsonTable
|
|||
|
|
{
|
|||
|
|
internal class JsonTableDataExporterDocumentInfo
|
|||
|
|
{
|
|||
|
|
public string Path { get; set; }
|
|||
|
|
|
|||
|
|
public string OrganizationDescription { get; set; }
|
|||
|
|
|
|||
|
|
public string OrganizationName { get; set; }
|
|||
|
|
|
|||
|
|
public string BuildingName { get; set; }
|
|||
|
|
|
|||
|
|
public string Author { get; set; }
|
|||
|
|
|
|||
|
|
public string Number { get; set; }
|
|||
|
|
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
|
|||
|
|
public string Address { get; set; }
|
|||
|
|
|
|||
|
|
public string ClientName { get; set; }
|
|||
|
|
|
|||
|
|
public string Status { get; set; }
|
|||
|
|
|
|||
|
|
public string IssueDate { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|