AP.NET/Models/Actor/Service.cs

13 lines
253 B
C#
Raw Normal View History

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