namespace ImaginationOverflow.UniversalDeepLinking.Editor.External { /// /// Represents an integer element in plist document. /// public class PlistElementInteger : PlistElement { /// /// The value stored in the integer element. /// public int value; /// /// Creates new integer element. /// /// The value of the element. public PlistElementInteger(int v) { this.value = v; } } }