﻿if (typeof (Communifire.Enum) == undefined || Communifire.Enum == null) { Communifire.Enum = {}; }

Communifire.Enum.UserLoginStatus = function() {
    return {
        InvalidCredentials: 0,
        Success: 1,
        AccountPending: 2,
        AccountBanned: 3,
        AccountDisapproved: 4,
        EmptyUserNameOrPassword: 5
    }
} ();

Communifire.Enum.SortFileColumn = function() {
    return {
        Unspecified: 0,
        FileName: 1,
        UploadDate: 2
    }
} ();

Communifire.Enum.SortOrderType = function() {
    return {
        Ascending: 0,
        Descending: 1,
        Unspecified: 2
    }
} ();


