Skip to content

Commit e94f0c6

Browse files
committed
Complete server information gathering service
1 parent b26beb2 commit e94f0c6

11 files changed

Lines changed: 678 additions & 56 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace Project_Tracker_Server {
8+
class ClientDataManifest {
9+
// Make sure to set ints to longs!
10+
public class Rootobject {
11+
public long AmountOpened { get; set; }
12+
public string[] DaysOpened { get; set; }
13+
public long ProjectsCount { get; set; }
14+
public string UserID { get; set; }
15+
public bool IsOpen { get; set; }
16+
public long YearlyOpens { get; set; }
17+
public long MonthlyOpens { get; set; }
18+
public long WeeklyOpens { get; set; }
19+
}
20+
21+
}
22+
}

app/Project Tracker Server/Project Tracker Server/DataTransferManifest.cs

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)