diff --git a/Flagsmith.FlagsmithClient/Flag.cs b/Flagsmith.FlagsmithClient/Flag.cs
index fc4f47d..7f1ff01 100644
--- a/Flagsmith.FlagsmithClient/Flag.cs
+++ b/Flagsmith.FlagsmithClient/Flag.cs
@@ -15,8 +15,6 @@ public Flag(Feature feature, bool enabled, string value, int featureId = default
this.Value = value;
this.Feature = feature;
}
- [JsonProperty("id")]
- public int Id { get; private set; }
[JsonProperty("feature")]
private Feature Feature { get; set; }
@@ -26,10 +24,6 @@ public Flag(Feature feature, bool enabled, string value, int featureId = default
[JsonProperty("feature_state_value")]
public string Value { get; private set; }
- public int getFeatureId()
- {
- return this.Feature.Id;
- }
public string GetFeatureName()
{
return this.Feature.Name;
diff --git a/Flagsmith.FlagsmithClient/Flagsmith.FlagsmithClient.csproj b/Flagsmith.FlagsmithClient/Flagsmith.FlagsmithClient.csproj
index 0782ef2..f10e36c 100644
--- a/Flagsmith.FlagsmithClient/Flagsmith.FlagsmithClient.csproj
+++ b/Flagsmith.FlagsmithClient/Flagsmith.FlagsmithClient.csproj
@@ -7,7 +7,7 @@