-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.cs
76 lines (69 loc) · 974 Bytes
/
database.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
75
76
/*
* Created by SharpDevelop.
* User: JT
* Date: 20.2.2010
* Time: 12:24
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
namespace PDFv2
{
/// <summary>
/// Description of database.
/// </summary>
public class database
{
private string m_username;
private string m_password;
private string m_server;
private string m_database;
public database()
{
}
public string username
{
get
{
return m_username;
}
set
{
m_username = value;
}
}
public string password
{
get
{
return m_password;
}
set
{
m_password = value;
}
}
public string server
{
get
{
return m_server;
}
set
{
m_server = value;
}
}
public string dbase
{
get
{
return m_database;
}
set
{
m_database = value;
}
}
}
}