9 lines
108 B
C#
9 lines
108 B
C#
namespace LMS.Common.Enum;
|
|
|
|
public enum OptionTypeEnum
|
|
{
|
|
String = 1,
|
|
JSON = 2,
|
|
Number = 3,
|
|
}
|