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