You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
497 B
TypeScript
14 lines
497 B
TypeScript
import { LoginRequest } from '../../hmg-common/services/authentication/models/login.request';
|
|
|
|
export class createVacationRequest extends LoginRequest{
|
|
public static SHARED_DATA = 'vacation-request';
|
|
public P_ITEM_TYPE: string;
|
|
public P_BEGIN_DATE: string;
|
|
public P_END_DATE: string;
|
|
public P_MESSAGE: string;
|
|
public P_REPLACEMENT_USER_NAME: string;
|
|
public P_NOTIFICATION_NAME: string;
|
|
public P_ACTION:string;
|
|
public RespondAttributeList: string;
|
|
}
|