PluralKit/Myriad/Types/Activity.cs

17 lines
287 B
C#
Raw Normal View History

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