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/ActivityUndo.cs
2020-06-06 01:29:13 -04:00

10 lines
198 B
C#

using Newtonsoft.Json;
namespace BirdsiteLive.ActivityPub
{
public class ActivityUndo : Activity
{
[JsonProperty("object")]
public Activity apObject { get; set; }
}
}