17 lines
510 B
C#
17 lines
510 B
C#
|
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; }
|
||
|
///<summary>a.k.a. article id</summary>
|
||
|
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; }
|
||
|
}
|
||
|
}
|