8 lines
130 B
TypeScript
8 lines
130 B
TypeScript
|
|
export interface IUnprotectRequest {
|
||
|
|
fileStorageId: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface IUnprotectResponse {
|
||
|
|
fileStorageId: string;
|
||
|
|
}
|