-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTogglUser.cs
44 lines (37 loc) · 936 Bytes
/
TogglUser.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace TogglAPI
{
[DataContract]
public class TogglUser
: TogglWithDetails, IExtensibleDataObject
{
protected override string DetailsUrl
{
get { return null; }
}
[DataMember(Name = "email")]
public string Email { get; set; }
[DataMember(Name = "at")]
public string AtStr { get; set; }
[DataMember(Name = "admin")]
public bool Admin { get; set; }
[DataMember(Name = "active")]
public bool Active { get; set; }
public DateTime At
{
get
{
return Convert.ToDateTime(AtStr);
}
set
{
AtStr = Convert.ToString(value);
}
}
}
}