iMonitor desktop application using dotnet 4.8
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using System; |
|
using System.ServiceModel; |
|
|
|
namespace iMonitorApp |
|
{ |
|
// Token: 0x0200000E RID: 14 |
|
[ServiceContract] |
|
public interface IService |
|
{ |
|
// Token: 0x0600006C RID: 108 |
|
[OperationContract] |
|
void DoWork(); |
|
} |
|
}
|
|
|