AP.NET/Models/IntransitiveActivity.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

38 lines
No EOL
954 B
C#

namespace ActivityPub;
/// <summary>
/// https://www.w3.org/ns/activitystreams#IntransitiveActivity
/// </summary>
public class IntransitiveActivity : Object {
/// <summary>
/// Default Constructor
/// </summary>
public IntransitiveActivity() : base() => this.Type = "IntransitiveActivity";
/// <summary>
/// https://www.w3.org/ns/activitystreams#actor
/// </summary>
public ObjectOrLink? Actor { get; set; }
/// <summary>
/// https://www.w3.org/ns/activitystreams#target
/// </summary>
public ObjectOrLink? Target { get; set; }
/// <summary>
/// https://www.w3.org/ns/activitystreams#result
/// </summary>
public ObjectOrLink? Result { get; set; }
/// <summary>
/// https://www.w3.org/ns/activitystreams#origin
/// </summary>
public ObjectOrLink? Origin { get; set; }
/// <summary>
/// https://www.w3.org/ns/activitystreams#instrument
/// </summary>
public ObjectOrLink? Instrument { get; set; }
}