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.
18 lines
453 B
18 lines
453 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using Application.Domain.Entities;
|
|
using Infrastructure.Application;
|
|
|
|
namespace MediaService.Applicaiton.Models
|
|
{
|
|
[Display(Name = "文件")]
|
|
public class SearchModel : PagedList<FolderObject>
|
|
{
|
|
[Required]
|
|
[Display(Name = "名称")]
|
|
public string Name { get; set; }
|
|
|
|
[Display(Name = "上级目录")]
|
|
public Guid? FolderId { get; set; }
|
|
}
|
|
} |