public Task <User> GetUserByIdAsync(long id) => GetAsync <User>(ServerRoutes.GetUserById(ApiUrl, id));
public Task <UserInfo> GetUserByIdAsync(long id) => GetAsync <UserInfo>(ServerRoutes.GetUserById(id));