sharp-chat/SharpChat.Common/Database/DatabaseType.cs

15 lines
239 B
C#
Raw Normal View History

2022-08-30 15:05:29 +00:00
namespace SharpChat.Database {
public enum DatabaseType {
AsciiString,
UnicodeString,
Int8,
Int16,
Int32,
Int64,
UInt8,
UInt16,
UInt32,
UInt64,
}
}