Skip to content

Commit

Permalink
Allow Enrollment properties to be set by client apps
Browse files Browse the repository at this point in the history
  • Loading branch information
vanessagertman committed May 1, 2017
1 parent 9be8211 commit 6105e14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Magpie/Magpie/Models/Enrollment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
public class Enrollment
{
public Channel Channel { get; private set; }
public bool IsRequired { get; internal set; }
public bool IsEnrolled { get; internal set; }
public string Email { get; internal set; }
public bool IsRequired { get; set; }
public bool IsEnrolled { get; set; }
public string Email { get; set; }

public Enrollment(Channel channel)
{
Expand Down

0 comments on commit 6105e14

Please sign in to comment.