1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using WpfApp29.Models;
- namespace WpfApp29.ViewModels
- {
- class UserListPageViewModel : BaseViewModel
- {
- public List<User> Users
- {
- get => new MainContext().Users.ToList();
- }
- }
- }
|