-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a90e6df
commit 577c9d8
Showing
9 changed files
with
58 additions
and
11 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
<Platforms>AnyCPU;x64;x86</Platforms> | ||
<Authors>EasyMicroservices</Authors> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Version>0.0.0.6</Version> | ||
<Version>0.0.0.7</Version> | ||
<Description>Model View View Model</Description> | ||
<Copyright>[email protected]</Copyright> | ||
<PackageTags>mvvm,mvpvm,modelview,modelviewviewmodel</PackageTags> | ||
|
@@ -17,7 +17,7 @@ | |
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="EasyMicroservices.ServiceContracts" Version="0.0.0.18" /> | ||
<PackageReference Include="EasyMicroservices.ServiceContracts" Version="0.0.0.19" /> | ||
</ItemGroup> | ||
|
||
</Project> |
File renamed without changes.
18 changes: 18 additions & 0 deletions
18
src/CSharp/Cores/EasyMicroservices.UI.Cores.Mvvm/Interfaces/ICommandAsync.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System.Threading.Tasks; | ||
using System.Windows.Input; | ||
|
||
namespace EasyMicroservices.UI.Cores.Interfaces | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public interface ICommandAsync : ICommand | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
/// <param name="parameter"></param> | ||
/// <returns></returns> | ||
Task ExecuteAsync(object parameter); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters