23 lines
378 B
C#
23 lines
378 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SWS.Share
|
|||
|
{
|
|||
|
public class Enum
|
|||
|
{
|
|||
|
public enum inOrOut
|
|||
|
{
|
|||
|
输入 = 0,
|
|||
|
输出 = 1
|
|||
|
}
|
|||
|
public enum cableClass
|
|||
|
{
|
|||
|
conventional = 0,
|
|||
|
homerun = 1
|
|||
|
}
|
|||
|
}
|
|||
|
}
|