eaac71df55
- WPF Client (empty) - MVVM code base (limited) - Images, Sprites, and other Rss
10 lines
192 B
C#
10 lines
192 B
C#
namespace SeriusSoft.Frameworks.MVVM.Core
|
|
{
|
|
public interface IBatchable
|
|
{
|
|
bool IsInBatchMode { get; set; }
|
|
void Begin_ViewModelUpdates();
|
|
void End_ViewModelUpdates();
|
|
}
|
|
}
|