15 lines
No EOL
343 B
C#
15 lines
No EOL
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; }
|
|
}
|
|
} |