mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-08 23:07:54 +00:00
feat: initial 6-character HID rework
This commit is contained in:
parent
73f43b8cb3
commit
9f56697241
30 changed files with 208 additions and 91 deletions
|
|
@ -32,7 +32,13 @@ public readonly struct GroupId: INumericId<GroupId, int>
|
|||
public class PKGroup
|
||||
{
|
||||
public GroupId Id { get; private set; }
|
||||
public string Hid { get; private set; } = null!;
|
||||
private string _hid = null!;
|
||||
public string Hid
|
||||
{
|
||||
private set => _hid = value.Trim();
|
||||
get => _hid;
|
||||
}
|
||||
|
||||
public Guid Uuid { get; private set; }
|
||||
public SystemId System { get; private set; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue