diff --git a/Socialvoid/SvObjects/FileTypes.cs b/Socialvoid/SvObjects/FileTypes.cs index e982deb..5437d47 100644 --- a/Socialvoid/SvObjects/FileTypes.cs +++ b/Socialvoid/SvObjects/FileTypes.cs @@ -16,38 +16,41 @@ * If not, see . */ -/// -/// File types indicate the content type of the file, if the server is -/// unable to determine the file type then it will default to DOCUMENT. -/// Since: v0.0.0 -/// -public enum FileTypes +namespace Socialvoid.SvObjects { - //------------------------------------------------- - #region general types /// - /// The default value of an . + /// File types indicate the content type of the file, if the server is + /// unable to determine the file type then it will default to DOCUMENT. /// Since: v0.0.0 /// - Document = 0, - #endregion - //------------------------------------------------- - #region Another styling - /// - /// The file is an image file type. - /// Since: v0.0.0 - /// - Photo = 1, - /// - /// The file is an video file type. - /// Since: v0.0.0 - /// - Video = 2, - /// - /// The file is an audio file type. - /// Since: v0.0.0 - /// - Audio = 3, - #endregion - //------------------------------------------------- -} + public enum FileTypes + { + //------------------------------------------------- + #region general types + /// + /// The default value of an . + /// Since: v0.0.0 + /// + Document = 0, + #endregion + //------------------------------------------------- + #region Another styling + /// + /// The file is an image file type. + /// Since: v0.0.0 + /// + Photo = 1, + /// + /// The file is an video file type. + /// Since: v0.0.0 + /// + Video = 2, + /// + /// The file is an audio file type. + /// Since: v0.0.0 + /// + Audio = 3, + #endregion + //------------------------------------------------- + } +} \ No newline at end of file diff --git a/Socialvoid/SvObjects/PeerTypes.cs b/Socialvoid/SvObjects/PeerTypes.cs index 456ed4a..bc32a93 100644 --- a/Socialvoid/SvObjects/PeerTypes.cs +++ b/Socialvoid/SvObjects/PeerTypes.cs @@ -16,42 +16,45 @@ * If not, see . */ -/// -/// Peer Types indicates the account type that's registered to the server, -/// some actions may be restricted depending on the peer type. -/// Since: v0.0.0 -/// -public enum PeerTypes +namespace Socialvoid.SvObjects { - //------------------------------------------------- - #region general types /// - /// The default value of an , which means - /// the peer type is undefined (or is unsupported by this version of - /// library). - /// In the case where our client received this type, we should show user - /// the "please update your client" message. + /// Peer Types indicates the account type that's registered to the server, + /// some actions may be restricted depending on the peer type. /// Since: v0.0.0 /// - None = 0, - #endregion - //------------------------------------------------- - #region Another styling - /// - /// Normal user account. - /// Since: v0.0.0 - /// - User = 1, - /// - /// A bot account that performs automated actions on the network. - /// Since: v0.0.0 - /// - Bot = 2, - /// - /// A proxy account that mirrors content from another platform. - /// Since: v0.0.0 - /// - Proxy = 3, - #endregion - //------------------------------------------------- + public enum PeerTypes + { + //------------------------------------------------- + #region general types + /// + /// The default value of an , which means + /// the peer type is undefined (or is unsupported by this version of + /// library). + /// In the case where our client received this type, we should show user + /// the "please update your client" message. + /// Since: v0.0.0 + /// + None = 0, + #endregion + //------------------------------------------------- + #region Another styling + /// + /// Normal user account. + /// Since: v0.0.0 + /// + User = 1, + /// + /// A bot account that performs automated actions on the network. + /// Since: v0.0.0 + /// + Bot = 2, + /// + /// A proxy account that mirrors content from another platform. + /// Since: v0.0.0 + /// + Proxy = 3, + #endregion + //------------------------------------------------- + } }