2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-09-13 12:43:17 +00:00
Files
esiur-dotnet/Esiur/Data/TDUClass.cs
2025-09-04 19:13:14 +03:00

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