I have a class with a property which is an enum
The enum is
/// /// All available delivery actions /// public enum E
The traditional aproach to adding a null to values that don't generally have one is to declare your variable as a nullable type, ie:
EnumDeliveryAction? action=null;