mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
11 lines
180 B
C#
11 lines
180 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
public enum UserRoomValidationResult {
|
|
[XmlEnum("1")]
|
|
Valid = 1,
|
|
[XmlEnum("2")]
|
|
RMFValidationFailed
|
|
}
|