GLTFChildRootProperty.cs 258 B

1234567891011
  1. using System.Runtime.Serialization;
  2. namespace GLTFExport.Entities
  3. {
  4. [DataContract]
  5. public class GLTFChildRootProperty : GLTFProperty
  6. {
  7. [DataMember(EmitDefaultValue = false)]
  8. public string name { get; set; }
  9. }
  10. }