Untitled

 avatar
unknown
plain_text
a year ago
267 B
4
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