mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
/**
|
|
* A class representing an email to send back to the user requesting an item
|
|
*/
|
|
export class RequestCopyEmail {
|
|
constructor(public subject: string,
|
|
public message: string) {
|
|
}
|
|
}
|