13 lines
341 B
Plaintext
13 lines
341 B
Plaintext
using 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 : PubSubEvent<bool> { }
|
|
}
|