Files
NKC/AppData/Enum.cs
T
2020-08-17 14:38:57 +02:00

18 lines
253 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AppData
{
public enum StatType
{
BATCH = 1,
BUNK,
SHEET,
CART,
BIN
}
}