mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-12-23 17:31:33 +00:00
8 lines
114 B
C#
8 lines
114 B
C#
|
namespace EightBit
|
|||
|
{
|
|||
|
public enum AccessLevel
|
|||
|
{
|
|||
|
Unknown, ReadOnly, WriteOnly, ReadWrite
|
|||
|
}
|
|||
|
}
|