init
This commit is contained in:
17
Common/DTS.Common/Events/DatabaseVersionChangedEvent.cs
Normal file
17
Common/DTS.Common/Events/DatabaseVersionChangedEvent.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using Prism.Events;
|
||||
|
||||
namespace DTS.Common.Events
|
||||
{
|
||||
/// <summary>
|
||||
/// Event to inform app that database version has changed
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
///
|
||||
/// </remarks>
|
||||
public class DatabaseVersionChangedEvent : PubSubEvent<DatabaseVersionChangedEventArgs> { }
|
||||
|
||||
public class DatabaseVersionChangedEventArgs
|
||||
{
|
||||
public string Version { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user