-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathLowObjects.cs
More file actions
38 lines (37 loc) · 1.05 KB
/
LowObjects.cs
File metadata and controls
38 lines (37 loc) · 1.05 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
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace TwicasSitePlugin.LowObject
{
public class LiveContext
{
public long MovieId { get; set; }
public int MovieCnum { get; set; }
public string AudienceId { get; internal set; }
}
public class ListUpdate
{
public List<Comment> comment { get; set; }
public int cnum { get; set; }
public string edit { get; set; }
}
public class Comment
{
public long id { get; set; }
//other
//other oldcomment
//owner
public string @class { get; set; }
public string html { get; set; }
public string date { get; set; }
public string dur { get; set; }
public string uid { get; set; }
public string screen { get; set; }
public string statusid { get; set; }
public int lat { get; set; }
public int lng { get; set; }
public bool show { get; set; }
public string yomi { get; set; }
}
}