protected bool Equals(AssetDocumentReference other)
 {
     return(string.Equals(ExternalAssetGuid, other.ExternalAssetGuid) && string.Equals(LocalDocumentAnchor, other.LocalDocumentAnchor));
 }
 public static void WriteTo(UnsafeWriter writer, AssetDocumentReference value)
 {
     writer.Write(value.ExternalAssetGuid);
     writer.Write(value.LocalDocumentAnchor);
 }