ps/Modules/Alkami.Ops.Certificates/Data/EnvironmentInfo.cs

18 lines
428 B
C#
Raw Permalink Normal View History

2023-05-30 22:51:22 -07:00
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<ServerInfo> Servers = new List<ServerInfo>();
}
}