@@ -25,7 +25,7 @@ public class DeleteAuditDocumentInDto
|
||||
|
||||
public class GetAuditDocumentDataInDto
|
||||
{
|
||||
public Guid? Id { get; set; }
|
||||
public List<Guid>? Ids { get; set; }
|
||||
|
||||
public bool? IsAuthorization { get; set; }
|
||||
}
|
||||
@@ -81,29 +81,40 @@ public class MovieFileOrFolderInDto
|
||||
public Guid ParentId { get; set; }
|
||||
}
|
||||
|
||||
|
||||
public class AuditDocumentAddOrEdit
|
||||
public class AuditDocumentUpdateDto
|
||||
{
|
||||
public Guid? Id { get; set; }
|
||||
|
||||
|
||||
public AuditDocumentType AuditDocumentTypeEnum { get; set; }
|
||||
|
||||
|
||||
public string FileFormat { get; set; }
|
||||
|
||||
|
||||
public string FilePath { get; set; }
|
||||
|
||||
|
||||
public decimal? FileSize { get; set; }
|
||||
|
||||
|
||||
public bool IsAuthorization { get; set; }
|
||||
|
||||
// public Guid? MainFileId { get; set; }
|
||||
|
||||
|
||||
// public Guid? MainFileId { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
|
||||
public Guid? ParentId { get; set; }
|
||||
|
||||
//public int? Version { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
public class GetBreadcrumbDataInDto
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
}
|
||||
|
||||
public class AuditDocumentAddOrEdit: AuditDocumentUpdateDto
|
||||
{
|
||||
|
||||
|
||||
public List<AuditDocumentAddOrEdit> Children { get; set; }=new List<AuditDocumentAddOrEdit>() { };
|
||||
|
||||
public bool IsUpdate { get; set; } = true;
|
||||
}
|
||||
|
||||
public class AuditDocumentQuery:PageInput
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user