Loading src/models/Area.cs +1 −1 Original line number Diff line number Diff line Loading @@ -6,7 +6,7 @@ public class Area : ICreatedAt, IUpdatedAt public string? Name { get; set; } public bool? IsActive { get; set; } public bool? IsActive { get; set; } = true; public DateTime? CreatedAt { get; set; } Loading src/models/InfobloxDomain.cs +1 −1 Original line number Diff line number Diff line Loading @@ -6,7 +6,7 @@ public class InfobloxDomain : ICreatedAt, IUpdatedAt public string? Name { get; set; } public string? Description { get; set; } public string? Description { get; set; } = string.Empty; public DateTime? CreatedAt { get; set; } Loading src/models/InfobloxGroup.cs +1 −1 Original line number Diff line number Diff line Loading @@ -8,7 +8,7 @@ public class InfobloxGroup : ICreatedAt public string? ManifestPath { get; set; } public bool? IsActive { get; set; } public bool? IsActive { get; set; } = true; public DateTime? CreatedAt { get; set; } } Loading src/models/InfobloxNetwork.cs +5 −2 Original line number Diff line number Diff line using System.Text.Json.Serialization; namespace Cals.Visor.Models; public class InfobloxNetwork : ICreatedAt, IUpdatedAt { public long? InfobloxNetworkId { get; set; } public string? Description { get; set; } public string? Description { get; set; } = string.Empty; public long? SubnetId { get; set; } public Subnet? Subnet { get; set; } [JsonIgnore] public virtual Subnet? Subnet { get; set; } public DateTime? CreatedAt { get; set; } Loading src/models/InfobloxRole.cs +2 −2 Original line number Diff line number Diff line Loading @@ -6,9 +6,9 @@ public class InfobloxRole : ICreatedAt, IUpdatedAt public string? Name { get; set; } public string? Description { get; set; } public string? Description { get; set; } = string.Empty; public bool? IsActivee { get; set; } public bool? IsActive { get; set; } = true; public DateTime? CreatedAt { get; set; } Loading Loading
src/models/Area.cs +1 −1 Original line number Diff line number Diff line Loading @@ -6,7 +6,7 @@ public class Area : ICreatedAt, IUpdatedAt public string? Name { get; set; } public bool? IsActive { get; set; } public bool? IsActive { get; set; } = true; public DateTime? CreatedAt { get; set; } Loading
src/models/InfobloxDomain.cs +1 −1 Original line number Diff line number Diff line Loading @@ -6,7 +6,7 @@ public class InfobloxDomain : ICreatedAt, IUpdatedAt public string? Name { get; set; } public string? Description { get; set; } public string? Description { get; set; } = string.Empty; public DateTime? CreatedAt { get; set; } Loading
src/models/InfobloxGroup.cs +1 −1 Original line number Diff line number Diff line Loading @@ -8,7 +8,7 @@ public class InfobloxGroup : ICreatedAt public string? ManifestPath { get; set; } public bool? IsActive { get; set; } public bool? IsActive { get; set; } = true; public DateTime? CreatedAt { get; set; } } Loading
src/models/InfobloxNetwork.cs +5 −2 Original line number Diff line number Diff line using System.Text.Json.Serialization; namespace Cals.Visor.Models; public class InfobloxNetwork : ICreatedAt, IUpdatedAt { public long? InfobloxNetworkId { get; set; } public string? Description { get; set; } public string? Description { get; set; } = string.Empty; public long? SubnetId { get; set; } public Subnet? Subnet { get; set; } [JsonIgnore] public virtual Subnet? Subnet { get; set; } public DateTime? CreatedAt { get; set; } Loading
src/models/InfobloxRole.cs +2 −2 Original line number Diff line number Diff line Loading @@ -6,9 +6,9 @@ public class InfobloxRole : ICreatedAt, IUpdatedAt public string? Name { get; set; } public string? Description { get; set; } public string? Description { get; set; } = string.Empty; public bool? IsActivee { get; set; } public bool? IsActive { get; set; } = true; public DateTime? CreatedAt { get; set; } Loading