Models: Add payment_member

This commit is contained in:
2023-09-07 00:40:53 +02:00
parent 1c45e95ef3
commit be734b880f
5 changed files with 47 additions and 16 deletions

@ -18,6 +18,9 @@ namespace Elwig.Models {
public string CommentFormat => (Comment != null) ? $" ({Comment})" : "";
public bool IsRed => Type == "R";
public bool IsWhite => Type == "W";
public override string ToString() {
return Name;
}