MapTo/test/TestConsoleApp/Data/UserList.cs

16 lines
284 B
C#

using System.Collections.Generic;
namespace BlueWest.Data
{
public class UserList
{
public List<User> Users;
public UserList(List<User> users)
{
Users = users;
}
public int Length => Users.Count;
}
}