75c381e645
Added EAV inventory types Added EAV object handling philosophy Added controllers Added EF Core migration integration
13 lines
176 B
C#
13 lines
176 B
C#
namespace WyvernInventory.Core.Models;
|
|
|
|
public class Enums
|
|
{
|
|
public enum DataType
|
|
{
|
|
String,
|
|
Int,
|
|
Decimal,
|
|
Bool,
|
|
DateTime
|
|
}
|
|
} |