8 lines
263 B
C#
8 lines
263 B
C#
|
public interface IUserAcquisitionSDK
|
|||
|
{
|
|||
|
void Init();
|
|||
|
void SendEvent(string eventName);
|
|||
|
void Transaction(string productId, string currencyCode, int quantity, double unitPrice, string transactionId,
|
|||
|
string receipt, string signature);
|
|||
|
}
|