17 lines
422 B
C#
17 lines
422 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 Mesh
|
|
{
|
|
public List<double> vertices { get; set; }
|
|
public List<int> indices { get; set; }
|
|
public List<double> normals { get; set; }
|
|
public int material { get; set; }
|
|
}
|
|
}
|