mirror of
https://github.com/NicolasConstant/BirdsiteLive
synced 2025-06-05 21:49:16 +02:00
15 lines
343 B
C#
15 lines
343 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace BirdsiteLive.ActivityPub
|
|
{
|
|
public class ActivityCreateNote : Activity
|
|
{
|
|
public string published { get; set; }
|
|
public string[] to { get; set; }
|
|
public string[] cc { get; set; }
|
|
|
|
[JsonProperty("object")]
|
|
public Note apObject { get; set; }
|
|
}
|
|
} |