-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWSClass.cs
47 lines (42 loc) · 1.07 KB
/
WSClass.cs
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
42
43
44
45
46
47
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GenericHid
{
class WSUser
{
public string Name;
public int age;
public DateTime birthdate;
public int ID;
}
public class WSRegistry
{
public int userID;
public DateTime fecha;
public float weightKG;
public float boneKG;
public float fat;
public double water;
public float Muscle;
public void clear()
{
//fecha = null;
weightKG = 0;
boneKG = 0;
fat = 0;
water = 0;
Muscle = 0;
}
}
public class WSreader
{
private WSUser currentUser;
private int currentProcess;
private int currentPart;
private int currentRegistry;
private int currentRegistryFound;
}
}