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