36 lines
662 B
C#
36 lines
662 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ToDoWorker.Helper
|
|
{
|
|
public enum EventEnum : int
|
|
{
|
|
[Description("点击")]
|
|
点击 = 1,
|
|
|
|
[Description("报名")]
|
|
报名 = 2,
|
|
|
|
[Description("登录")]
|
|
登录 = 6,
|
|
|
|
[Description("关注")]
|
|
关注 = 7,
|
|
|
|
[Description("取关")]
|
|
取关 = 8,
|
|
|
|
[Description("听课")]
|
|
听课 = 17,
|
|
|
|
[Description("聊天")]
|
|
聊天 = 20,
|
|
|
|
[Description("互动精选")]
|
|
互动精选 = 45,
|
|
}
|
|
} |