11 lines
125 B
C#
11 lines
125 B
C#
namespace FreeSR.Proto
|
|
{
|
|
using ProtoBuf;
|
|
public enum Gender
|
|
{
|
|
GenderNone = 0,
|
|
GenderMan = 1,
|
|
GenderWoman = 2,
|
|
}
|
|
|
|
}
|