Add DeliveryAdminWindow
This commit is contained in:
@ -15,5 +15,11 @@ namespace Elwig.Models {
|
||||
|
||||
[Column("comment")]
|
||||
public string? Comment { get; private set; }
|
||||
|
||||
public string NameWithComment => Name + ((Comment != null) ? $" ({Comment})" : "");
|
||||
|
||||
public override string ToString() {
|
||||
return Name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user