-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDatas.cs
41 lines (37 loc) · 920 Bytes
/
Datas.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlatmateLivingBillShare
{
public class Bill
{
public float Price { set; get; }
public string Payer { set; get; }
public string[] SharedPeople { set; get; }
public string Item { set; get; }
}
public class NameCheck
{
public NameCheck(string n, bool c)
{
Name = n;
Check = c;
}
public string Name { set; get; }
public bool Check { set; get; }
}
public class BillResult
{
public BillResult(string from, string to, float amount)
{
From = from;
To = to;
Amount = amount;
}
public string From { set; get; }
public string To { set; get; }
public float Amount { set; get; }
}
}