// Decompiled with JetBrains decompiler // Type: UnityEditor.iOS.Xcode.PlistElementBoolean // Assembly: UnityEditor.iOS.Extensions.Xcode, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null // MVID: BE0D0667-EA91-4EFF-8038-E7F264A52EC5 // Assembly location: C:\Program Files\Unity5.6.0f1\Editor\Data\PlaybackEngines\iOSSupport\UnityEditor.iOS.Extensions.Xcode.dll namespace ImaginationOverflow.UniversalDeepLinking.Editor.External { /// /// Represents a boolean element in plist document. /// public class PlistElementBoolean : PlistElement { /// /// The value stored in the boolean element. /// public bool value; /// /// Creates new boolean element. /// /// The value of the element. public PlistElementBoolean(bool v) { this.value = v; } } }