16 lines
392 B
C#
16 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LjsGo.Navisworks.GraphicsAssignment.ExportGeometryToJson.Models
|
|
{
|
|
public class ModelData
|
|
{
|
|
public List<Instance> instances { get; set; }
|
|
public List<Mesh> meshes { get; set; }
|
|
public List<Material> materials { get; set; }
|
|
}
|
|
}
|