diff --git a/SpeckleCore/Models/ModelObjects.cs b/SpeckleCore/Models/ModelObjects.cs index 0c046b2..e314a51 100644 --- a/SpeckleCore/Models/ModelObjects.cs +++ b/SpeckleCore/Models/ModelObjects.cs @@ -137,6 +137,10 @@ [ Newtonsoft.Json.JsonProperty( "geometryHash", Required = Newtonsoft.Json.Requi /// The id/guid that the origin application identifies this object by. [Newtonsoft.Json.JsonProperty( "applicationId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore )] public string ApplicationId { get; set; } + + /// The name of this object in the origin application GUI. + [Newtonsoft.Json.JsonProperty( "applicationId", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore )] + public string Name { get; set; } /// The extra properties field of a speckle object. [Newtonsoft.Json.JsonProperty( "properties", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore )]