public async void InitCategories()
        {
            var categories = await DataRequester.RequestCategory();

            if (categories == null)
            {
                return;
            }

            CategoryList.AddRange(categories.others);

            if (CategoryList.Count > 0)
            {
                CategoryName = CategoryList[0].name;
            }
        }