12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
import { ItemResponseContainerDTO } from "./Windream.WebService";
|
|
|
|
|
|
export interface IJournalControllerDTO
|
|
{
|
|
GetLastModifiedDocuments(parameter: GetLastModifiedDocumentsDTO): ItemResponseContainerDTO[];
|
|
}
|
|
|
|
export interface GetLastModifiedDocumentsDTO
|
|
{
|
|
NumberOfResults: number;
|
|
} |