2020-06-06 01:29:13 -04:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace BirdsiteLive.ActivityPub
|
|
|
|
|
{
|
|
|
|
|
public class Activity
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("@context")]
|
2021-01-07 19:37:09 -05:00
|
|
|
|
public object context { get; set; }
|
2020-06-06 01:29:13 -04:00
|
|
|
|
public string id { get; set; }
|
|
|
|
|
public string type { get; set; }
|
|
|
|
|
public string actor { get; set; }
|
2020-06-28 20:27:03 -04:00
|
|
|
|
|
2020-06-06 01:29:13 -04:00
|
|
|
|
//[JsonProperty("object")]
|
|
|
|
|
//public string apObject { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|