Fix namespace problem for `PeerTypes` and `FileTypes` enums.

Signed-off-by: Aliwoto <aminnimaj@gmail.com>
This commit is contained in:
Aliwoto 2021-10-08 11:01:55 +00:00
parent 60c342ddbf
commit 40b4968a18
No known key found for this signature in database
GPG Key ID: 646B4FE4205EC48C
2 changed files with 71 additions and 65 deletions

View File

@ -16,6 +16,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
namespace Socialvoid.SvObjects
{
/// <summary>
/// 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.
@ -51,3 +53,4 @@ public enum FileTypes
#endregion
//-------------------------------------------------
}
}

View File

@ -16,6 +16,8 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
namespace Socialvoid.SvObjects
{
/// <summary>
/// Peer Types indicates the account type that's registered to the server,
/// some actions may be restricted depending on the peer type.
@ -55,3 +57,4 @@ public enum PeerTypes
#endregion
//-------------------------------------------------
}
}