mirror of
https://github.com/astuto/astuto.git
synced 2026-09-03 04:30:20 +02:00
7 lines
117 B
TypeScript
7 lines
117 B
TypeScript
|
|
interface IInvitation {
|
||
|
|
email: string;
|
||
|
|
updated_at: string;
|
||
|
|
accepted_at?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default IInvitation;
|