using APT.BaseData.Domain.Entities;
using APT.BaseData.Domain.Entities.FM;
using System;
using System.Collections.Generic;
namespace APT.BaseData.Domain.ApiModel
{
    /// 
    /// The model that represents an API displayed on the help page.
    /// 
    public class SelectUsersModel
    {
        public SelectUsersModel()
        {
            UserIds = new List();
            DepartmentIds = new List();
        }
        public List UserIds { get; set; }
        public List DepartmentIds { get; set; }
        public string OrgId { get; set; }
    }
    public class UserModel
    {
        public string UserId { get; set; }
        public string UserName { get; set; }
    }
}