-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathModAction.cs
More file actions
41 lines (32 loc) · 1.01 KB
/
Copy pathModAction.cs
File metadata and controls
41 lines (32 loc) · 1.01 KB
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
using SnooSharp.Converters;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SnooSharp
{
public class ModAction : ThingData
{
[JsonProperty("description")]
public string Description { get; set; }
[JsonProperty("mod_id36")]
public string ModId36 { get; set; }
[JsonConverter(typeof(UnixUTCTimeConverter))]
[JsonProperty("created_utc")]
public DateTime CreatedUTC { get; set; }
[JsonProperty("subreddit")]
public string Subreddit { get; set; }
[JsonProperty("sr_id36")]
public string SRId36 { get; set; }
[JsonProperty("details")]
public string Details { get; set; }
[JsonProperty("action")]
public string Action { get; set; }
[JsonProperty("target_fullname")]
public string TargetFullname { get; set; }
[JsonProperty("mod")]
public string Mod { get; set; }
}
}