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