Zzz – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6  
7 namespace Zzz.Idle
8 {
9 public class IdleMark
10 {
11 private string Name { get; set; }
12  
13 private TimeSpan Timeout { get; set; }
14  
15 public IdleMark(string name, TimeSpan timeout)
16 {
17 Name = name;
18 Timeout = timeout;
19 }
20 }
21 }