Skip to content

Commit

Permalink
add undefined project type
Browse files Browse the repository at this point in the history
  • Loading branch information
Dean Marcussen committed Nov 3, 2018
1 parent 3fdb739 commit 9bcb290
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ProjectType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ namespace TheAppsPajamas.Shared.Types
{
public class ProjectType : Enumeration<ProjectType>
{
public static readonly ProjectType Undefined = new ProjectType(0, "Undefined");
public static readonly ProjectType Shared = new ProjectType(1, "Shared");
public static readonly ProjectType Droid = new ProjectType(2, "Droid");
public static readonly ProjectType Ios = new ProjectType(3, "Ios");
Expand Down

0 comments on commit 9bcb290

Please sign in to comment.