Also supports Get request for /api/users and /api/users?userId=x and /api/timelogs?userId=x and /api/stats stats needs fleshing out. also logic behind when someone is checking in/out..
15 lines
281 B
C#
15 lines
281 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebSocketService
|
|
{
|
|
public sealed class DataReceived
|
|
{
|
|
public int ID { get; set; }
|
|
public string PropName { get; set; }
|
|
}
|
|
}
|