10 lines
210 B
C#
10 lines
210 B
C#
|
using Newtonsoft.Json;
|
|||
|
|
|||
|
namespace BirdsiteLive.ActivityPub
|
|||
|
{
|
|||
|
public class ActivityUndoFollow : Activity
|
|||
|
{
|
|||
|
[JsonProperty("object")]
|
|||
|
public ActivityFollow apObject { get; set; }
|
|||
|
}
|
|||
|
}
|