using System.Collections.Generic; namespace ttrss_co_client.ttrss.messages { public abstract class ApiResponse { public int seq { get; set; } public int status { get; set; } } public class GenericApiResponse : ApiResponse { public Dictionary Content{get; set;} } }