-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDischargeDB.cs
More file actions
28 lines (26 loc) · 802 Bytes
/
DischargeDB.cs
File metadata and controls
28 lines (26 loc) · 802 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Шифровщик
{
internal class DischargeDB
{
public DischargeDB(string user, string operation, string Opentext, string Closedtext, int Firstkey, int Secondkey)
{
User = user;
Operation = operation;
OpenText = Opentext;
ClosedText = Closedtext;
FirstKey = Firstkey;
SecondKey = Secondkey;
}
public string User { get; set; }
public string Operation { get; set; }
public string OpenText { get; set; }
public string ClosedText { get; set; }
public int FirstKey { get; set; }
public int SecondKey { get; set; }
}
}