Skip to content

Instantly share code, notes, and snippets.

@chriskuech
Created June 13, 2019 18:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriskuech/ef80d924b6fc9080a509ca0a47806460 to your computer and use it in GitHub Desktop.
Save chriskuech/ef80d924b6fc9080a509ca0a47806460 to your computer and use it in GitHub Desktop.
enum Priority {
Low = 3
Medium = 2
High = 1
}
class ToDo {
[string] $FilePath
[Nullable[Priority]] $Priority
[int] $Line
[string] $Task
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment