Untitled

Anonymous
plain_text
07/18/2024 6:21 AM
356 B
21
Indexable
/**
 * Contact Owner (createdBy)
 */
export interface CreatedBy {
    /**
     * The id of the user
     */
    id: number;
    /**
     * The name of the user
     */
    name: string;
    /**
     * The email of the user
     */
    email: string;
}
Editor is loading...
Leave a Comment