Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Codecrew / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 30
  • Merge Requests 2
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • ..
  • models
  • event-user.model.ts
  • Tuukka Kivilahti's avatar
    commit before mergin onja's changes · 0562ac3a
    Tuukka Kivilahti committed Aug 04, 2018
    0562ac3a
event-user.model.ts 355 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

import {User} from "./user.model";
import gql from "graphql-tag";

export enum UserGender {
  MALE,
  FEMALE,
  UNSPECIFIED
}

export class EventUser {

  static fragments = gql`
    fragment eventUserPrimitives on EventUser {
      id
      eventusercreated
    }
   
  `;

  id: number;
  eventusercreated: Date;
  user: User;

  constructor() { }
}