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.
15 lines
224 B
15 lines
224 B
2 weeks ago
|
using System;
|
||
|
using System.ServiceModel;
|
||
|
|
||
|
namespace iMonitorApp
|
||
|
{
|
||
|
// Token: 0x0200000E RID: 14
|
||
|
[ServiceContract]
|
||
|
public interface IService
|
||
|
{
|
||
|
// Token: 0x0600006C RID: 108
|
||
|
[OperationContract]
|
||
|
void DoWork();
|
||
|
}
|
||
|
}
|