mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
17 lines
No EOL
360 B
C#
17 lines
No EOL
360 B
C#
using NodaTime;
|
|
|
|
#nullable enable
|
|
namespace PluralKit.Core
|
|
{
|
|
public class PKGroup
|
|
{
|
|
public GroupId Id { get; }
|
|
public string Hid { get; } = null!;
|
|
public SystemId System { get; }
|
|
|
|
public string Name { get; } = null!;
|
|
public string? Description { get; }
|
|
|
|
public Instant Created { get; }
|
|
}
|
|
} |