@code {
public List clients = new List
{
new Client { Id = 1, Name = "John Doe", Address = "123 Main St." },
new Client { Id = 2, Name = "Jane Smith", Address = "456 Elm St." },
new Client { Id = 3, Name = "Bob Johnson", Address = "789 Oak St." }
};
string filter = "";
public class Client
{
public int Id { get; set; }
public string Name { get; set; }
public string Address { get; set; }
}
}