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