AP.NET/Models/Activity.cs
Gordon Pedersen 7c84fbc4c5 Initial commit way too late
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.
2024-04-05 15:26:57 +11:00

17 lines
No EOL
400 B
C#

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