There's a lot of rubbish in here, but I don't want to lose anything, so I'm going to commit it all before getting rid of some of the trash.
13 lines
No EOL
245 B
C#
13 lines
No EOL
245 B
C#
namespace ActivityPub;
|
|
|
|
/// <summary>
|
|
/// https://www.w3.org/ns/activitystreams#Audio
|
|
/// </summary>
|
|
public class Audio : Document {
|
|
|
|
/// <summary>
|
|
/// Default Constructor
|
|
/// </summary>
|
|
public Audio() : base() => this.Type = "Audio";
|
|
|
|
} |