This commit is contained in:
2021-07-31 22:27:59 +05:00
parent 39236f43b4
commit 52eaaaac79
505 changed files with 36230 additions and 1019 deletions

View File

@@ -8,6 +8,11 @@ namespace DataClient.Struct
{
public class Pasport
{
public Pasport() { }
public Pasport(byte[] arr)
{
this.PaspByte = arr;
}
//functions
private DateTime? ByteToDate(byte[] arr) { return ByteToDate(arr, 0); }
private DateTime? ByteToDate(byte[] arr, int index)