creating notes functionnal

This commit is contained in:
Nicolas Constant
2020-06-28 23:42:23 -04:00
parent 3b08f75204
commit 32c5343722
8 changed files with 126 additions and 35 deletions

View File

@ -0,0 +1,15 @@
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; }
}
}