using System.Collections.Generic; namespace ttrss_co_client.ttrss.datastructures { public class Attachment { public int id { get; set; } public Uri content_url { get; set; } public string content_type { get; set; } ///a.k.a. article id public int post_id { get; set; } public string title { get; set; } public string duration { get; set; } public int width { get; set; } public int height { get; set; } } }