Class YouTubePost
Post in YouTube from Anilibria
Inheritance
System.Object
YouTubePost
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Anilibria.NET.Models
Assembly: Anilibria.NET.dll
Syntax
public class YouTubePost
Properties
Comments
Count of comment on post
Declaration
[JsonProperty("comments")]
public int? Comments { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Id
ID of post
Declaration
[JsonProperty("id")]
public int? Id { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
ImageUrl
Url to img on youtube images
Declaration
[JsonProperty("image")]
public string ImageUrl { get; }
Property Value
Type | Description |
---|---|
System.String |
Name
Name of post
Declaration
[JsonProperty("title")]
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Release
Post creation date
Declaration
[JsonProperty("timestamp")]
[JsonConverter(typeof(UnixDateTimeConverter))]
public DateTime Release { get; }
Property Value
Type | Description |
---|---|
DateTime |
Views
Views on post
Declaration
[JsonProperty("views")]
public int? Views { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
YoutubeId
Id on youtube.com
Declaration
[JsonProperty("youtube_id")]
public string YoutubeId { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
ToString()
Override on .ToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | Name of post |
Overrides
System.Object.ToString()