Fixes, added session class

This commit is contained in:
2022-12-12 13:08:04 +03:00
parent 7d0d1b53ae
commit 5a34f03779
22 changed files with 193 additions and 225 deletions

View File

@@ -23,6 +23,7 @@ public class Address {
public string FirewallAddressObject { get; }
public DateTime? EditDate { get; }
public int CustomerId { get; }
public Object? ExtendedData { get; }
public Address(
int id,
@@ -44,7 +45,8 @@ public class Address {
int PTR,
string firewallAddressObject,
DateTime? editDate,
int customer_id
int customer_id,
Object? extendedData
) {
this.Id = id;
this.SubnetId = subnetId;
@@ -66,6 +68,7 @@ public class Address {
this.FirewallAddressObject = firewallAddressObject;
this.EditDate = editDate;
this.CustomerId = customer_id;
this.ExtendedData = extendedData;
}
public override string ToString() {