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