10 lines
119 B
C#
10 lines
119 B
C#
|
|
namespace Meezi.Core.Enums;
|
||
|
|
|
||
|
|
public enum CustomerGroup
|
||
|
|
{
|
||
|
|
Regular = 0,
|
||
|
|
Vip = 1,
|
||
|
|
New = 2,
|
||
|
|
Employee = 3
|
||
|
|
}
|