AP.NET/Models/Activity/Leave.cs

13 lines
248 B
C#
Raw Normal View History

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";
}