19 lines
307 B
C#
19 lines
307 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AutoAnswer
|
|||
|
{
|
|||
|
public class Enums
|
|||
|
{
|
|||
|
public enum ReplyModel
|
|||
|
{
|
|||
|
传递最近5条消息 = 1,
|
|||
|
传递当前消息 = 2
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|