"Remove unused NfcHanler classes and utilities" This commit deletes several obsolete and unused files from the NfcHanler directory, including utility classes, enums, and a large command handling class. This cleanup improves code maintainability by eliminating unnecessary dependencies and clutter.
9 lines
174 B
C#
9 lines
174 B
C#
namespace NfcC7_DLL.NfcHanler.Protocols;
|
|
|
|
public enum OptoHeadStatus : byte
|
|
{
|
|
Unknown = 0xFF,
|
|
OptoHeadDisabled = 0x00,
|
|
OptoHeadC2 = 0xC2,
|
|
OptoHeadC7 = 0xC7,
|
|
} |