using System.Collections.Generic; namespace CoopServer { public class Blocklist { public List Username { get; set; } = new(); public List IP { get; set; } = new(); } }