12 lines
186 B
C#
12 lines
186 B
C#
using System;
|
|
|
|
namespace Server
|
|
{
|
|
public interface IDynamicEnum
|
|
{
|
|
String Value { get; set; }
|
|
String[] Values { get; }
|
|
Boolean IsValid { get; }
|
|
}
|
|
}
|