SDK_UnityMoney/Assets/Adjust/Scripts/AdjustDeeplink.cs

16 lines
290 B
C#
Raw Normal View History

2025-08-30 10:46:34 +00:00
using System;
namespace AdjustSdk
{
public class AdjustDeeplink
{
public string Deeplink { get; private set; }
public string Referrer { get; set; }
public AdjustDeeplink(string deeplink)
{
this.Deeplink = deeplink;
}
}
}