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