PluralKit/PluralKit.Core/Models/PKGroup.cs
2020-07-28 19:17:00 +02:00

17 lines
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; }
}
}