2023-03-12 14:10:59 -04:00
|
|
|
|
using System.Text.Json.Serialization;
|
2020-06-28 20:27:03 -04:00
|
|
|
|
|
|
|
|
|
namespace BirdsiteLive.ActivityPub
|
|
|
|
|
{
|
|
|
|
|
public class ActivityAccept : Activity
|
|
|
|
|
{
|
2023-03-12 14:10:59 -04:00
|
|
|
|
[JsonPropertyName("object")]
|
|
|
|
|
public NestedActivity apObject { get; set; }
|
2020-06-28 20:27:03 -04:00
|
|
|
|
}
|
|
|
|
|
}
|