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