public static string GetSlug(SNOType type, SNO sno) => _snoSlugs[type][sno];
public SNOID(SNOType type, int id, string name) { this.Type = type; this.ID = id; this.Name = name; }
public static Dictionary <SNO, string> GetSlugs(SNOType type) => _snoSlugs[type];