Stock from Github repo

- WPF Client (empty)
- MVVM code base (limited)
- Images, Sprites, and other Rss
This commit is contained in:
Nate VanBuskirk
2020-01-09 17:10:28 -06:00
parent 959ece4d7c
commit eaac71df55
102 changed files with 519 additions and 0 deletions
@@ -0,0 +1,9 @@
namespace SeriusSoft.Frameworks.MVVM.Core
{
public interface IBatchable
{
bool IsInBatchMode { get; set; }
void Begin_ViewModelUpdates();
void End_ViewModelUpdates();
}
}