Files
2026-04-20 12:06:34 +08:00

250 lines
11 KiB
C#

using SGModule.NetKit;
public static class ADEventTrack
{
public static readonly string AD_Event = TrackEvent.Register("AD_Event");
public static readonly string MaxPayEvent = TrackEvent.Register("Max_Pay_Event");
public static readonly string IOS_Pay_Event = TrackEvent.Register("IOS_Pay_Event");
public static readonly string Google_Pay_Event = TrackEvent.Register("Google_Pay_Event");
public static readonly string Subscription = TrackEvent.Register("Subscription");
public static readonly string Special = TrackEvent.Register("Special");
public static readonly string Live = TrackEvent.Register("Live");
public static readonly string SecretAlbums = TrackEvent.Register("SecretAlbums");
public static readonly string Chat = TrackEvent.Register("Chat");
public static readonly string Coinsbuy = TrackEvent.Register("coins_buy");
public static readonly string VipLive = TrackEvent.Register("vip_live");
public static readonly string VipSecretAlbums = TrackEvent.Register("vip_secret_albums");
public static class Property
{
#region +1
public static readonly string buy_one_show = TrackProperty.Register("buy_one_show");
public static readonly string buy_one_click = TrackProperty.Register("buy_one_click");
public static readonly string buy_one_open = TrackProperty.Register("buy_one_open");
public static readonly string buy_one_success = TrackProperty.Register("buy_one_success");
#endregion
#region +1
public static readonly string kaiju_show = TrackProperty.Register("kaiju_show");
public static readonly string kaiju_click = TrackProperty.Register("kaiju_click");
public static readonly string kaiju_success = TrackProperty.Register("kaiju_success");
#endregion
#region +1
public static readonly string BuyOneOffShow = TrackProperty.Register("BuyOneOffShow");
public static readonly string BuyOneOffClick = TrackProperty.Register("BuyOneOffClick");
public static readonly string BuyOneOffOpen = TrackProperty.Register("BuyOneOffOpen");
public static readonly string BuyOneOffSuccess = TrackProperty.Register("BuyOneOffSuccess");
#endregion
#region
public static readonly string lucky_gift_show = TrackProperty.Register("lucky_gift_show");
public static readonly string lucky_gift_click = TrackProperty.Register("lucky_gift_click");
public static readonly string lucky_gift_receive = TrackProperty.Register("lucky_gift_receive");
#endregion
#region 广
public static readonly string remove_ad_show = TrackProperty.Register("remove_ad_show");
public static readonly string remove_ad_click = TrackProperty.Register("remove_ad_click");
public static readonly string remove_ad_receive = TrackProperty.Register("remove_ad_receive");
#endregion
#region
public static readonly string shop_show = TrackProperty.Register("shop_show");
public static readonly string shop_click_ = TrackProperty.Register("shop_click_", true);
public static readonly string shop_click_ad = TrackProperty.Register("shop_click_ad", true);
public static readonly string shop_receive_ = TrackProperty.Register("shop_receive_", true);
#endregion
#region AF相关
public static readonly string afterRewardAdShow = TrackProperty.Register("afterRewardAdShow");
public static readonly string afterRewardAdEnd = TrackProperty.Register("afterRewardAdEnd");
#endregion
#region
public static readonly string master_pass_show = TrackProperty.Register("master_pass_show");
public static readonly string master_pass_click = TrackProperty.Register("master_pass_click");
public static readonly string master_pass_receive = TrackProperty.Register("master_pass_receive");
#endregion
#region
public static readonly string three_days_gift_show = TrackProperty.Register("three_days_gift_show");
public static readonly string three_days_gift_buy_success =
TrackProperty.Register("three_days_gift_buy_success");
public static readonly string three_days_gift_click = TrackProperty.Register("three_days_gift_click");
#endregion
#region
public static readonly string fail_open = TrackProperty.Register("fail_open");
public static readonly string fail_show = TrackProperty.Register("fail_show");
public static readonly string fail_click = TrackProperty.Register("fail_click");
public static readonly string fail_buy_success = TrackProperty.Register("fail_buy_success");
#endregion
#region adLoad
public static readonly string ad_load_code = TrackProperty.Register("ad_load_code_");
public static readonly string ad_show_code = TrackProperty.Register("ad_show_code_");
#endregion
#region
public static readonly string secret_albums_show = TrackProperty.Register("secret_albums_show", true);
public static readonly string secret_albums_click_ = TrackProperty.Register("secret_albums_click", true);
public static readonly string secret_albums_success_ = TrackProperty.Register("secret_albums_success_", true);
public static readonly string vip_secret_albums_unclock_ = TrackProperty.Register("vip_secret_albums_unclock_", true);
#endregion
#region VIP
public static readonly string vip_show_page = TrackProperty.Register("vip_show");
public static readonly string vip_click_ = TrackProperty.Register("vip_click_", true);
public static readonly string vip_success_ = TrackProperty.Register("vip_success_", true);
public static readonly string vip_show_levelpass = TrackProperty.Register("vip_show_levelpass_", true);
public static readonly string vip_show_sell = TrackProperty.Register("vip_show_sell");
public static readonly string vip_live_unclock_ = TrackProperty.Register("vip_live_unclock_", true);
public static readonly string vip_live_unclock = TrackProperty.Register("vip_live_unclock");
#endregion
#region special
public static readonly string special_level = TrackProperty.Register("special_level");
public static readonly string special_level_video = TrackProperty.Register("special_level_video");
public static readonly string special_level_coin = TrackProperty.Register("special_level_coin");
public static readonly string special_level_sub = TrackProperty.Register("special_level_sub");
public static readonly string special_level_pay = TrackProperty.Register("special_level_pay");
public static readonly string vip_level = TrackProperty.Register("vip_level");
public static readonly string vip_level_coin = TrackProperty.Register("vip_level_coin");
public static readonly string vip_level_sub = TrackProperty.Register("vip_level_sub");
public static readonly string live_unclock = TrackProperty.Register("live_unclock");
public static readonly string secret_albums_unclock = TrackProperty.Register("secret_albums_unclock");
public static readonly string chat_unclock = TrackProperty.Register("chat_unclock");
public static readonly string chat_coin = TrackProperty.Register("chat_coin");
public static readonly string chat_sub = TrackProperty.Register("chat_sub");
public static readonly string chat_unclock_open = TrackProperty.Register("chat_unclock_open");
public static readonly string download = TrackProperty.Register("download");
#endregion
public static readonly string unlock_live = TrackProperty.Register("unlock_live");
public static readonly string unlock_live_resources = TrackProperty.Register("unlock_live_resources");
public static readonly string unlock_secretAlbums = TrackProperty.Register("unlock_secret albums");
public static readonly string unlock_secretAlbums_resources = TrackProperty.Register("unlock_secret albums_resources");
public static readonly string vip_secret_albums_unclock = TrackProperty.Register("vip_secret_albums_unclock");
public static readonly string unlock_svip = TrackProperty.Register("unlock_svip");
public static readonly string unlock_vip = TrackProperty.Register("unlock_vip");
}
}
public static class HallBehaviorTrack
{
public static readonly string Event = TrackEvent.Register("Hall_behavior");
public static class Property
{
#region H5相关
public static readonly string fly_ct_number = TrackProperty.Register("fly_ct_number");
public static readonly string annular_ct_number = TrackProperty.Register("annular_ct_number");
public static readonly string annular_finish_number = TrackProperty.Register("annular_finish_number");
public static readonly string annular_get_number = TrackProperty.Register("annular_get_number");
public static readonly string collect_fly_number = TrackProperty.Register("collect_fly_number");
#endregion
}
}
public static class ADTrack
{
public static readonly string Event = TrackEvent.Register("AD");
public static class Property
{
#region
public static readonly string ad_load_code_ = TrackProperty.Register("ad_load_code_");
public static readonly string ad_show_code_ = TrackProperty.Register("ad_show_code_");
#endregion
}
}
public static class WwBehaviorTrack
{
public static readonly string Event = TrackEvent.Register("ww_behavior");
public static class Property
{
#region Ww
public static readonly string ww_message = TrackProperty.Register("ww_message");
public static readonly string ww_ch = TrackProperty.Register("ww_ch", true);
#endregion
}
}
public static class VideoBehaviorTrack
{
public static readonly string Event = TrackEvent.Register("video_behavior");
public static class Property
{
#region
public static readonly string watch_ad_people = TrackProperty.Register("watch_ad_people");
public static readonly string Rewarded_videos_trigger_number =
TrackProperty.Register("Rewarded_videos_trigger_number");
#endregion
}
}
public static class ThreeDaysGiftEventTrack
{
public static readonly string Event = TrackEvent.Register("Three_days_gift_event");
public static class Property
{
#region
public static readonly string three_day1_success = TrackProperty.Register("three_day1_success");
public static readonly string three_day2_success = TrackProperty.Register("three_day2_success");
public static readonly string three_day3_success = TrackProperty.Register("three_day3_success");
#endregion
}
}
public static class AfPurchaseTrack
{
public static readonly string Event = TrackEvent.Register("af_purchase");
public static class Property
{
#region
public static readonly string af_revenue = TrackProperty.Register("af_revenue");
#endregion
}
}