phranki

Results 1 issues of phranki

TagClient.cs public Task AddTagAsync(string objectName, int objectId, string tagName) { return GetAsync("/api/v1/tags/add", $"object={objectName}&o_id={objectId}&item={tagName}"); } public Task RemoveTagAsync(string objectName, int objectId, string tagName) { return GetAsync("/api/v1/tags/remove", $"object={objectName}&o_id={objectId}&item={tagName}"); } Change to: public...