13 lines
376 B
Plaintext
13 lines
376 B
Plaintext
using Microsoft.Practices.Prism.Events;
|
|
|
|
|
|
namespace DTS.Common.Events
|
|
{
|
|
/// <summary>
|
|
/// sets the property UseZeroForUnfiltered
|
|
/// this controls whether 0 or P is used in isocode filter field
|
|
/// when modifying an isocode from a filter
|
|
/// </summary>
|
|
public class SetUseZeroForUnfilteredEvent : CompositePresentationEvent<bool> { }
|
|
}
|