using System.Collections.Generic; namespace Alkami.Ops.Certificates.Data { internal class EnvironmentInfo { public EnvironmentInfo(string name, string type) { this.Name = name; this.EnvironmentType = type; } public readonly string Name; public readonly string EnvironmentType; public List Servers = new List(); } }