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