-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.cs
More file actions
43 lines (32 loc) · 725 Bytes
/
data.cs
File metadata and controls
43 lines (32 loc) · 725 Bytes
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
using System;
using Xamarin.Forms;
namespace HC
{
public class data
{
public string sender { get; set; }
public string receiver { get; set; }
public int amt { get; set; }
public DateTime tim { get; set; }
public override string ToString()
{
return (sender + " " + receiver + " " + amt + " " + tim).ToString();
}
public string getsender()
{
return sender;
}
public string getreceiver()
{
return receiver;
}
public int getamt()
{
return amt;
}
public DateTime gettim()
{
return tim;
}
}
}