Simplify client check in code

This commit is contained in:
2023-08-24 21:35:45 +02:00
parent 6261217e7c
commit ba71618463
3 changed files with 8 additions and 5 deletions

View File

@ -7,6 +7,9 @@ namespace Elwig.Helpers {
public enum Type { Matzen, GWK };
public bool IsMatzen => Client == Type.Matzen;
public bool IsGWK => Client == Type.GWK;
public string NameToken;
public string NameShort;
public string NameShortened;