Files
Nate VanBuskirk eaac71df55 Stock from Github repo
- WPF Client (empty)
- MVVM code base (limited)
- Images, Sprites, and other Rss
2020-01-09 17:10:28 -06:00

10 lines
192 B
C#

namespace SeriusSoft.Frameworks.MVVM.Core
{
public interface IBatchable
{
bool IsInBatchMode { get; set; }
void Begin_ViewModelUpdates();
void End_ViewModelUpdates();
}
}