Skip to content

Instantly share code, notes, and snippets.

@volgar1x
Created October 29, 2012 22:13
Show Gist options
  • Save volgar1x/3976888 to your computer and use it in GitHub Desktop.
Save volgar1x/3976888 to your computer and use it in GitHub Desktop.
#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