Created
May 16, 2019 05:08
-
-
Save ktutnik/c5557b42e359a62759f142b1584fc93f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export class User { | |
| constructor( | |
| public name:string, | |
| public birthDate:Date, | |
| public role: "User" | "Admin" | |
| ){} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment