ComputerGraphics/20210129/ljs/LjsGo.Navisworks/GraphicsAssignment/ExportGeometryToJson/Models/LineTest.cs

17 lines
435 B
C#
Raw Normal View History

2021-02-20 15:27:11 +08:00
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; }
}
}