This repository has been archived on 2023-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
BirdsiteLIVE/src/BirdsiteLive.ActivityPub/Models/ActivityCreateNote.cs

19 lines
382 B
C#

using System;
using BirdsiteLive.ActivityPub.Models;
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; }
}
}