9 lines
214 B
C#
9 lines
214 B
C#
|
namespace BirdsiteLive.ActivityPub
|
|||
|
{
|
|||
|
public class Image
|
|||
|
{
|
|||
|
public string type { get; set; } = "image";
|
|||
|
public string mediaType { get; set; }
|
|||
|
public string url { get; set; }
|
|||
|
}
|
|||
|
}
|