SDK_UnityMoney/Assets/Adjust/Scripts/AdjustStoreInfo.cs

16 lines
298 B
C#
Raw Normal View History

2025-08-30 10:46:34 +00:00
using System;
namespace AdjustSdk
{
public class AdjustStoreInfo
{
public string StoreName { get; private set; }
public string StoreAppId { get; set; }
public AdjustStoreInfo(string storeName)
{
this.StoreName = storeName;
}
}
}