17 lines
370 B
C#
17 lines
370 B
C#
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace PhxhSDK
|
||
|
{
|
||
|
public interface IBIService
|
||
|
{
|
||
|
void SetUser(string userId);
|
||
|
void ClearUser();
|
||
|
|
||
|
void SetUserProperty(string name, string value);
|
||
|
|
||
|
|
||
|
//事件名,Dic<参数名,参数值>
|
||
|
void ReportEvent(string eventName, Dictionary<string, object> param = null);
|
||
|
|
||
|
}
|
||
|
}
|