13 lines
244 B
C#
13 lines
244 B
C#
|
|
namespace ActivityPub;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// https://www.w3.org/ns/activitystreams#Move
|
|||
|
|
/// </summary>
|
|||
|
|
public class Move : Activity {
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Default Constructor
|
|||
|
|
/// </summary>
|
|||
|
|
public Move() : base() => this.Type = "Move";
|
|||
|
|
}
|