10 строки
244 B
C#
10 строки
244 B
C#
|
namespace XamarinTV.Models
|
|||
|
{
|
|||
|
public class VideoComment
|
|||
|
{
|
|||
|
public string Username { get; set; }
|
|||
|
public string Avatar { get; set; }
|
|||
|
public string Comment { get; set; }
|
|||
|
public string Date { get; set; }
|
|||
|
}
|
|||
|
}
|