forked from CrustyJew/RedditSharp-DEPRECATED-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTBUserNote.cs
More file actions
27 lines (26 loc) · 760 Bytes
/
TBUserNote.cs
File metadata and controls
27 lines (26 loc) · 760 Bytes
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
#pragma warning disable 1591
using System;
namespace RedditSharp
{
public class TBUserNote
{
public int NoteTypeIndex { get; set; }
public string NoteType { get; set; }
public string SubName { get; set; }
public string Submitter { get; set; }
public int SubmitterIndex { get; set; }
public string Message { get; set; }
public string AppliesToUsername { get; set; }
public string Url { get; set; }
private DateTime _timestamp;
public DateTime Timestamp
{
get { return _timestamp; }
set
{
_timestamp = DateTime.SpecifyKind(value, DateTimeKind.Utc);
}
}
}
}
#pragma warning restore 1591