12 lines
168 B
C#
12 lines
168 B
C#
|
using System;
|
||
|
|
||
|
namespace UnityEngine.Purchasing
|
||
|
{
|
||
|
[Serializable]
|
||
|
class GoogleReceipt
|
||
|
{
|
||
|
public string json;
|
||
|
public string signature;
|
||
|
}
|
||
|
}
|