17 lines
435 B
C#
17 lines
435 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ComBridge = Autodesk.Navisworks.Api.ComApi.ComApiBridge;
|
|
using COMApi = Autodesk.Navisworks.Api.Interop.ComApi;
|
|
|
|
namespace LjsGo.Navisworks.GraphicsAssignment.ExportGeometryToJson.Models
|
|
{
|
|
public class LineTest
|
|
{
|
|
public string Start { get; set; }
|
|
public string End { get; set; }
|
|
}
|
|
}
|