From 053c2302e800654b2d77a6dd411ee73ebf97a784 Mon Sep 17 00:00:00 2001 From: amoghrraikar Date: Tue, 20 Jan 2026 19:16:26 +0530 Subject: [PATCH] Add optional Icon field to Goal model --- CommBank-Server/Models/Goal.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CommBank-Server/Models/Goal.cs b/CommBank-Server/Models/Goal.cs index 77ff1ad..0099f51 100644 --- a/CommBank-Server/Models/Goal.cs +++ b/CommBank-Server/Models/Goal.cs @@ -27,4 +27,6 @@ public class Goal [BsonRepresentation(BsonType.ObjectId)] public string? UserId { get; set; } -} \ No newline at end of file + + public string? Icon { get; set; } +}