18 changed files with 129 additions and 0 deletions
@ -0,0 +1,10 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations; |
|||
|
|||
namespace LINGYUN.Abp.Auditing.AuditLogs; |
|||
public class AuditLogDeleteManyInput |
|||
{ |
|||
[Required] |
|||
public List<Guid> Ids { get; set; } |
|||
} |
|||
@ -0,0 +1,10 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations; |
|||
|
|||
namespace LINGYUN.Abp.Auditing.SecurityLogs; |
|||
public class SecurityLogDeleteManyInput |
|||
{ |
|||
[Required] |
|||
public List<Guid> Ids { get; set; } |
|||
} |
|||
Loading…
Reference in new issue