You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/UserCenter/Application/Models/SearchUserModel.cs

12 lines
311 B

using Application.Models;
using Infrastructure.Application;
using System.ComponentModel.DataAnnotations;
namespace UserCenter.Application.Models
{
public class SearchUserModel : PagedListModel<EditUserModel>
{
[Display(Name = "已移除")]
public bool IsDeleted { get; set; }
}
}