From 3d92e94ca7045bcfd0f9a1008a445a9332a50daf Mon Sep 17 00:00:00 2001 From: ZHISHAN LU <115784608+334quq@users.noreply.github.com> Date: Wed, 26 Nov 2025 13:00:08 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E5=8A=A0=E5=85=A5=20Icon=20=E5=AD=97?= =?UTF-8?q?=E6=AE=B5Goal.cs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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; } +} From c9a305df2ff7b2a8d65b16f68dd1b6d6e3721c87 Mon Sep 17 00:00:00 2001 From: ZHISHAN LU <115784608+334quq@users.noreply.github.com> Date: Wed, 26 Nov 2025 13:01:13 +0800 Subject: [PATCH 2/2] Support icons --- CommBank-Server/Models/Goal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommBank-Server/Models/Goal.cs b/CommBank-Server/Models/Goal.cs index 0099f51..694662c 100644 --- a/CommBank-Server/Models/Goal.cs +++ b/CommBank-Server/Models/Goal.cs @@ -27,6 +27,6 @@ public class Goal [BsonRepresentation(BsonType.ObjectId)] public string? UserId { get; set; } - + public string? Icon { get; set; } }