using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Provides support for rolling back the changes
// Token: 0x0200013D RID: 317
[Token(Token = "0x200013D")]
public interface IRevertibleChangeTracking : IChangeTracking
{
/// Resets the object's state to unchanged by rejecting the modifications.
// Token: 0x060007C7 RID: 1991
[Token(Token = "0x60007C7")]
[Address(Slot = "0")]
void RejectChanges();
}
}