23 lines
378 B
C#
Raw Normal View History

2025-09-24 18:39:10 +08:00
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
}
}
}