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

@@ -9,6 +9,7 @@ public class Vrf {
public string Description { get; }
public string Sections { get; }
public DateTime? EditDate { get; }
public Object? ExtendedData { get; }
public Vrf(
int id,
@@ -16,7 +17,8 @@ public class Vrf {
string rd,
string description,
string sections,
DateTime? editDate
DateTime? editDate,
Object? custom_fields
) {
this.Id = id;
this.Name = name;
@@ -24,6 +26,7 @@ public class Vrf {
this.Description = description;
this.Sections = sections;
this.EditDate = editDate;
this.ExtendedData = custom_fields;
}
public override string ToString()
{