mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-09-13 12:43:17 +00:00
15 lines
222 B
C#
15 lines
222 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
|
|
}
|
|
}
|