AP.NET/Models/Objects/Profile.cs

17 lines
386 B
C#
Raw Normal View History

namespace ActivityPub;
/// <summary>
/// https://www.w3.org/ns/activitystreams#Profile
/// </summary>
public class Profile : Object {
/// <summary>
/// Default Constructor
/// </summary>
public Profile() : base() => this.Type = "Profile";
/// <summary>
/// https://www.w3.org/ns/activitystreams#describes
/// </summary>
public ObjectOrLink? Describes { get; set; }
}