namespace PS.IPAM; using System; [Serializable] public class Vrf { public int Id { get; } public string Name { get; } public string RouteDistinguisher { get; } public string Description { get; } public string Sections { get; } public DateTime? EditDate { get; } public Object? ExtendedData { get; } public Vrf( int id, string name, string rd, string description, string sections, DateTime? editDate, Object? custom_fields ) { this.Id = id; this.Name = name; this.RouteDistinguisher = rd; this.Description = description; this.Sections = sections; this.EditDate = editDate; this.ExtendedData = custom_fields; } public override string ToString() { return this.Name; } }