classlib all types implemented

This commit is contained in:
2022-12-05 14:08:59 +03:00
parent 09cd00dc66
commit affbd18de2
14 changed files with 282 additions and 154 deletions

View File

@@ -1,6 +1,7 @@
namespace PS.IPAM;
using System;
[Serializable]
public class Address {
public int Id { get; }
public int SubnetId { get; }
@@ -13,11 +14,11 @@ public class Address {
public int TagId { get; }
public int DeviceId { get; }
public string Location { get; }
public int Port { get; }
public string Port { get; }
public string Note { get; }
public DateTime? LastSeen { get; }
public bool ExcludePing { get; }
public int PTRignore { get; }
public bool PTRignore { get; }
public int PTR { get; }
public string FirewallAddressObject { get; }
public DateTime? EditDate { get; }
@@ -35,11 +36,11 @@ public class Address {
int tag,
int deviceId,
string location,
int port,
string port,
string note,
DateTime? lastSeen,
bool excludePing,
int PTRignore,
bool PTRignore,
int PTR,
string firewallAddressObject,
DateTime? editDate,