Singularity/Assets/Plugins/ImaginationOverflow/UniversalDeepLinking/Editor/External/PlistElementString.cs

23 lines
640 B
C#
Raw Normal View History

2024-05-06 14:45:45 -04:00
namespace ImaginationOverflow.UniversalDeepLinking.Editor.External
{
/// <summary>
/// <para>Represents a string element in plist document.</para>
/// </summary>
public class PlistElementString : PlistElement
{
/// <summary>
/// <para>The value stored in the string element.</para>
/// </summary>
public string value;
/// <summary>
/// <para>Creates new string element.</para>
/// </summary>
/// <param name="v">The value of the element.</param>
public PlistElementString(string v)
{
this.value = v;
}
}
}