using System;
namespace System.ComponentModel
{
/// Provides support for rolling back the changes
// Token: 0x0200008F RID: 143
public interface IRevertibleChangeTracking : IChangeTracking
{
/// Resets the object’s state to unchanged by rejecting the modifications.
// Token: 0x060004F2 RID: 1266
void RejectChanges();
}
}