AP.NET/Models/Actor/Person.cs

13 lines
249 B
C#
Raw Normal View History

namespace ActivityPub;
/// <summary>
/// https://www.w3.org/ns/activitystreams#Person
/// </summary>
public class Person : Actor {
/// <summary>
/// Default Constructor
/// </summary>
public Person() : base() => this.Type = "Person";
}