Singularity/Assets/Plugins/ImaginationOverflow/UniversalDeepLinking/Scripts/LinkInformation.cs
2024-05-06 11:45:45 -07:00

42 lines
790 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace ImaginationOverflow.UniversalDeepLinking
{
[Serializable]
public class LinkInformation
{
[SerializeField]
private string _scheme = string.Empty;
[SerializeField]
private string _host = string.Empty;
[SerializeField]
private string _path = string.Empty;
public string Scheme
{
get { return _scheme; }
set { _scheme = value; }
}
public string Host
{
get { return _host; }
set { _host = value; }
}
public string Path
{
get { return _path; }
set { _path = value; }
}
}
}