mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 08:38:49 -07:00
14 lines
196 B
C#
14 lines
196 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[Flags]
|
|
public enum Gender {
|
|
[XmlEnum("0")]
|
|
Unknown = 0,
|
|
[XmlEnum("1")]
|
|
Male = 1,
|
|
[XmlEnum("2")]
|
|
Female = 2
|
|
}
|