14 lines
310 B
C#
14 lines
310 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace PrivaPub.Models.ActivityPub.Extra
|
|
{
|
|
[JsonSerializable(typeof(ActivityPubPublicKey))]
|
|
public class ActivityPubInstrument
|
|
{
|
|
[JsonPropertyName("type")]
|
|
public string Type { get; set; }
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|