14 lines
194 B
C#
14 lines
194 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Squirrowse.Core.Models
|
|||
|
{
|
|||
|
public enum Groups
|
|||
|
{
|
|||
|
debug=-1,
|
|||
|
normal,
|
|||
|
superUser
|
|||
|
}
|
|||
|
}
|