I understand the MVVM pattern, tell me how to properly implement the connection between the Model and ViewModel collections. Suppose in Model I have a collection that is replenished by it (when clients connect)
public List<Client> ClientList { get; set; } How do I implement a similar collection in the ViewModel? (a binding from View is made on it)