using System.Collections.Generic; namespace Oqtane.Infrastructure { public class ServerState { public string SiteKey { get; set; } public List Assemblies { get; set; } = new List(); public bool IsInitialized { get; set; } = false; } }