mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
18 lines
No EOL
326 B
C#
18 lines
No EOL
326 B
C#
namespace Myriad.Types;
|
|
|
|
public record Activity
|
|
{
|
|
public string Name { get; init; }
|
|
public string State { get; init; }
|
|
public ActivityType Type { get; init; }
|
|
public string? Url { get; init; }
|
|
}
|
|
|
|
public enum ActivityType
|
|
{
|
|
Game = 0,
|
|
Streaming = 1,
|
|
Listening = 2,
|
|
Custom = 4,
|
|
Competing = 5
|
|
} |