From 18f998b18c4a2fae809beb981cf1571eddfb554f Mon Sep 17 00:00:00 2001 From: namannnnnnnnn Date: Tue, 23 Jun 2026 18:24:15 +1000 Subject: [PATCH] Add optional icon field to Goal model --- CommBank-Server/Models/Goal.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CommBank-Server/Models/Goal.cs b/CommBank-Server/Models/Goal.cs index 77ff1ad5..218f3905 100644 --- a/CommBank-Server/Models/Goal.cs +++ b/CommBank-Server/Models/Goal.cs @@ -25,6 +25,8 @@ public class Goal [BsonRepresentation(BsonType.ObjectId)] public List? TagIds { get; set; } + public string? Icon { get; set; } + [BsonRepresentation(BsonType.ObjectId)] public string? UserId { get; set; } } \ No newline at end of file