From b294143594fb0e5d40d67a139d31c9c3b1031c70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E7=82=9C=E7=BF=94?= <2307953404@qq.com> Date: Mon, 16 Sep 2024 21:30:30 +0800 Subject: [PATCH] 12 --- asg_form/Controllers/Teamregistration/RegisterController.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/asg_form/Controllers/Teamregistration/RegisterController.cs b/asg_form/Controllers/Teamregistration/RegisterController.cs index 6f13fb6..8a14f9b 100644 --- a/asg_form/Controllers/Teamregistration/RegisterController.cs +++ b/asg_form/Controllers/Teamregistration/RegisterController.cs @@ -26,14 +26,14 @@ namespace asg_form.Controllers.Teamregistration } public class userMsg { - public long id { get; set; } + public long? id { get; set; } public string chinaname { get; set; } public int userId { get; set; } public int sex { get; set; } public string introduction { get; set; } public string gameId { get; set; } - public string historyRank { get; set; } - public string contactNumber { get; set; } + public string? historyRank { get; set; } + public string? contactNumber { get; set; } } public class RegisterController : ControllerBase