From 045e0944c0889fe9bcdb806312c1070a4c3efb4f Mon Sep 17 00:00:00 2001 From: Vikram Sahu <32266548+snipperbytes@users.noreply.github.com> Date: Wed, 20 May 2020 14:51:26 +0530 Subject: [PATCH] updaing hepf --- Pepipost/Models/Settings.cs | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/Pepipost/Models/Settings.cs b/Pepipost/Models/Settings.cs index 840e044..8af72bd 100755 --- a/Pepipost/Models/Settings.cs +++ b/Pepipost/Models/Settings.cs @@ -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; @@ -77,6 +78,23 @@ public int? Opentrack onPropertyChanged("Opentrack"); } } + + /// + /// TODO: Write general description for this method + /// + [JsonProperty("hepf")] + public int? hepf + { + get + { + return this.hepf; + } + set + { + this.hepf = value; + onPropertyChanged("hepf"); + } + } /// /// TODO: Write general description for this method @@ -112,4 +130,4 @@ public string Bcc } } } -} \ No newline at end of file +}