18 lines
336 B
C#
18 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Plugin.Cowain.Driver.Models.Enum
|
|
{
|
|
public enum OperModeEnum
|
|
{
|
|
[Description("主动读")]
|
|
Read,
|
|
[Description("订阅")]
|
|
Subscribe
|
|
}
|
|
}
|