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/Platform/Application/Models/SearchUserModel.cs

13 lines
323 B

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