cloutier--bird.makeup/src/BirdsiteLive.ActivityPub/Models/Attachment.cs

9 lines
208 B
C#
Raw Normal View History

2020-07-22 19:27:25 -04:00
namespace BirdsiteLive.ActivityPub
{
public class Attachment
{
public string type { get; set; }
public string mediaType { get; set; }
public string url { get; set; }
}
}