/dotnet/Sync/SyncLogger.cs
C# | 12 lines | 11 code | 1 blank | 0 comment | 0 complexity | 4f25150225530747b9a0c5274344222a MD5 | raw file
1using System; 2using System.Collections.Generic; 3using System.Linq; 4using System.Text; 5 6namespace ActivityInfo.Sync 7{ 8 interface SyncLogger 9 { 10 void log(int level, String text); 11 } 12}