17 lines
287 B
C#
17 lines
287 B
C#
namespace Myriad.Types;
|
|
|
|
public record Activity
|
|
{
|
|
public string Name { 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
|
|
} |