2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-09-13 12:43:17 +00:00
This commit is contained in:
2025-09-04 19:13:14 +03:00
parent 47c3f9f926
commit a2a7ff445c
14 changed files with 603 additions and 524 deletions

14
Esiur/Data/TDUClass.cs Normal file
View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Data
{
public enum TDUClass
{
Fixed = 0x0,
Dynamic = 0x1,
Typed = 0x2,
Extension = 0x3
}
}