17 lines
466 B
C#
17 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Zxd.Domain.Dto.Resource;
|
|
|
|
namespace Zxd.Domain.Impl
|
|
{
|
|
public interface IScreenRecordDomain : IScopedDependency
|
|
{
|
|
Task<bool> ScreenRecord(ScreenRecord postData);
|
|
Task<bool> FileRecord(ScreenRecordFile postData);
|
|
Task<PageResult<ScreenRecordResponse>> GetScreenRecordList(ScreenRecordRequest postData);
|
|
}
|
|
}
|