using System;
using System.Collections.Generic;
// This is a model of the REST entity.
public class Article {
public int Id
{
get;
set;
}
public string Name
// Use this class to perform requests against the REST API.
public class Articles {
public Article Get(int Id) {
// GET CODE
return new Article();
public List<Article> List() {
// LIST CODE
return new List<Article>();
public void Delete (int id)
// DELETE CODE