Interface IChangeResult<UNIT>
Contract for change notifications.
Assembly: Meadow.Contracts.dll
View Source
Declaration
public interface IChangeResult<UNIT> where UNIT : struct
Properties
New
The value at the time of this event or notification.
View Source
Declaration
UNIT New { get; set; }
Old
The previous value before this event or notification, or null if there was no previous value.
View Source
Declaration
UNIT? Old { get; set; }