using System; using System.Collections.Generic; namespace TeslaConsole; public class AppEventArgs : EventArgs { public Guid ApplicationId { get; private set; } public List PodIds { get; private set; } public AppEventArgs(Guid applicationId, IEnumerable podIds) { ApplicationId = applicationId; PodIds = new List(podIds); } }