d_sms_service/APT.BaseData.Domain/ApiModel/FM/SelectUsersModel.cs

29 lines
739 B
C#
Raw Permalink Normal View History

2024-10-28 13:45:58 +08:00
using APT.BaseData.Domain.Entities;
using APT.BaseData.Domain.Entities.FM;
using System;
using System.Collections.Generic;
namespace APT.BaseData.Domain.ApiModel
{
/// <summary>
/// The model that represents an API displayed on the help page.
/// </summary>
public class SelectUsersModel
{
public SelectUsersModel()
{
UserIds = new List<string>();
DepartmentIds = new List<string>();
}
public List<string> UserIds { get; set; }
public List<string> DepartmentIds { get; set; }
public string OrgId { get; set; }
}
public class UserModel
{
public string UserId { get; set; }
public string UserName { get; set; }
}
}