11 lines
290 B
C#
11 lines
290 B
C#
|
7 years ago
|
namespace Yavsc.Models.Messaging
|
||
|
|
{
|
||
|
|
public class PublicStreamInfo
|
||
|
|
{
|
||
|
|
public long id { get; set; }
|
||
|
|
public string sender { get; set; }
|
||
|
|
public string title { get; set; }
|
||
|
|
public string url { get; set; }
|
||
|
|
public string mediaType { get; set; }
|
||
|
|
}
|
||
|
|
}
|