feat: initial 6-character HID rework

This commit is contained in:
Iris System 2024-04-28 15:46:06 +12:00
parent 73f43b8cb3
commit 9f56697241
30 changed files with 208 additions and 91 deletions

View file

@ -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; }