Skip to content

Commit

Permalink
updaing hepf
Browse files Browse the repository at this point in the history
  • Loading branch information
ivikramsahu authored May 20, 2020
1 parent 7518030 commit 045e094
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion Pepipost/Models/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public class Settings : BaseModel
private int? footer;
private int? clicktrack;
private int? opentrack;
private int? hepf;
private int? unsubscribe;
private string bcc;

Expand Down Expand Up @@ -77,6 +78,23 @@ public int? Opentrack
onPropertyChanged("Opentrack");
}
}

/// <summary>
/// TODO: Write general description for this method
/// </summary>
[JsonProperty("hepf")]
public int? hepf
{
get
{
return this.hepf;
}
set
{
this.hepf = value;
onPropertyChanged("hepf");
}
}

/// <summary>
/// TODO: Write general description for this method
Expand Down Expand Up @@ -112,4 +130,4 @@ public string Bcc
}
}
}
}
}

0 comments on commit 045e094

Please sign in to comment.