Models: Remove DeliveryPartAttr
This commit is contained in:
@ -1,5 +1,14 @@
|
||||
namespace Elwig.Helpers {
|
||||
public class NullItem {
|
||||
public static string Name => "- Keine Angabe -";
|
||||
|
||||
public string Name { get; private set; }
|
||||
|
||||
public NullItem(string name = "- Keine Angabe -") {
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public override string ToString() {
|
||||
return Name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user