Created
October 29, 2012 22:13
-
-
Save volgar1x/3976888 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef ABUSE_REASON_HPP | |
#define ABUSE_REASON_HPP | |
namespace Data | |
{ | |
class AbuseReason : public DataObject | |
{ | |
int _abuseReasonId() const | |
{ return this["_abuseReasonId"].Cast<int>(); } | |
int _mask() const | |
{ return this["_mask"].Cast<int>(); } | |
int _reasonTextId() const | |
{ return this["_reasonTextId"].Cast<int>(); } | |
}; | |
} | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment