PluralKit/Myriad/Types/Activity.cs

17 lines
287 B
C#
Raw Normal View History

2021-11-27 02:14:09 +00:00
namespace Myriad.Types;
2021-08-27 15:03:47 +00:00
2021-11-27 02:14:09 +00:00
public record Activity
{
public string Name { get; init; }
public ActivityType Type { get; init; }
public string? Url { get; init; }
}
2021-08-27 15:03:47 +00:00
2021-11-27 02:14:09 +00:00
public enum ActivityType
{
Game = 0,
Streaming = 1,
Listening = 2,
Custom = 4,
Competing = 5
2020-12-22 12:15:26 +00:00
}