There's a lot of rubbish in here, but I don't want to lose anything, so I'm going to commit it all before getting rid of some of the trash.
17 lines
No EOL
386 B
C#
17 lines
No EOL
386 B
C#
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; }
|
|
} |