2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-10-29 07:10:29 +00:00
Files
esiur-dotnet/Esiur/Data/TDUClass.cs
2025-10-15 17:34:18 +03:00

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
}
}