/**
 * Interface of an IStory's 'last_author' property.
 *
 * @interface IStoryLastAuthor
 */
export interface IStoryLastAuthor {
  readonly id: number
  readonly userid: string
}
