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