aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/odlux/apps/demoApp/src/models/author.ts
blob: 7e28ae8aafc33446d29b444ee00e68dcb5acc8ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * Represents an author.
 */
export interface IAuthor {
  /**
   * Defines the unique id of the autor. 
   */
  id: number;

  /**
   * Defines the first name of this author.
   */
  firstName: string;

  /**
   * Defines the last name of this author.
   */
  lastName: string;
}