-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClsAddress.cs
74 lines (62 loc) · 1.6 KB
/
ClsAddress.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CraftyClcks.Models
{
public class ClsAddress
{
#region Private variables
private int _mAddressId;
private string _mAddressLine1;
private string _mAddressLine2;
private string _mTown;
private string _mCounty;
private string _mPostCode;
private Guid _mAccessToken;
#endregion
#region Constructor
public ClsAddress()
{
}
#endregion
#region Properties
public Guid AccessToken
{
get { return this._mAccessToken; }
set { this._mAccessToken = value; }
}
public int AddressID
{
get { return this._mAddressId; }
set { this._mAddressId = value; }
}
public string AddressLine1
{
get { return this._mAddressLine1; }
set { this._mAddressLine1 = value; }
}
public string AddressLine2
{
get { return this._mAddressLine2; }
set { this._mAddressLine2 = value; }
}
public string Town
{
get { return this._mTown; }
set { this._mTown = value; }
}
public string County
{
get { return this._mCounty; }
set { this._mCounty = value; }
}
public string PostCode
{
get { return this._mPostCode; }
set { this._mPostCode = value; }
}
#endregion
}
}