mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-10-29 07:10:29 +00:00
16 lines
239 B
C#
16 lines
239 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Esiur.Data
|
|
{
|
|
public enum TDUClass
|
|
{
|
|
Fixed = 0x0,
|
|
Dynamic = 0x1,
|
|
Typed = 0x2,
|
|
Extension = 0x3,
|
|
Invalid
|
|
}
|
|
}
|