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