This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
BirdsiteLIVE/src/BirdsiteLive.ActivityPub/Models/Activity.cs

17 lines
441 B
C#

using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace BirdsiteLive.ActivityPub
{
public class Activity
{
[JsonPropertyName("@context")]
public object context { get; set; }
public string id { get; set; }
public string type { get; set; }
public string actor { get; set; }
//[JsonPropertyName("object")]
//public string apObject { get; set; }
}
}