Exemplo n.º 1
0
        public static int ToNum(this ItemBoxViewModel item)
        {
            switch (item.Type)
            {
            case YourItemType.All:
                return(0);

            case YourItemType.Unread:
                return(1);

            case YourItemType.Private:
                return(2);

            case YourItemType.Public:
                return(3);

            case YourItemType.Untagged:
                return(4);

            case YourItemType.Tags:
                return(5);

            default:
                return(-1);
            }
        }
Exemplo n.º 2
0
        public static int ToNumForFeed(this ItemBoxViewModel item)
        {
            switch (item.Type)
            {
            case YourItemType.Network:
                return(0);

            case YourItemType.Popular:
                return(1);

            case YourItemType.Recent:
                return(2);

            default:
                return(-1);
            }
        }