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.
12 lines
264 B
C#
12 lines
264 B
C#
namespace ActivityPub;
|
|
|
|
/// <summary>
|
|
/// https://www.w3.org/ns/activitystreams#Arrive
|
|
/// </summary>
|
|
public class Arrive : IntransitiveActivity {
|
|
|
|
/// <summary>
|
|
/// Default Constructor
|
|
/// </summary>
|
|
public Arrive() : base() => this.Type = "Arrive";
|
|
}
|