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
Sam Therapy a57e443a9d
All checks were successful
continuous-integration/drone/push Build is passing
possibly fix context question
2023-05-04 23:42:59 +02:00

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; }
}
}