mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +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
|
|
@ -33,7 +33,13 @@ public readonly struct SystemId: INumericId<SystemId, int>
|
|||
public class PKSystem
|
||||
{
|
||||
[Key] public SystemId Id { get; }
|
||||
public string Hid { get; }
|
||||
private string _hid = null!;
|
||||
public string Hid
|
||||
{
|
||||
private set => _hid = value.Trim();
|
||||
get => _hid;
|
||||
}
|
||||
|
||||
public Guid Uuid { get; private set; }
|
||||
public string Name { get; }
|
||||
public string Description { get; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue