From d6ec159af449620673d842f1da7f313d6eb5a3b4 Mon Sep 17 00:00:00 2001 From: lincube Date: Sat, 7 Mar 2026 17:25:29 +0800 Subject: [PATCH] 0.4.9.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 小修复 --- LanMountainDesktop/Services/ClassIslandScheduleDataService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LanMountainDesktop/Services/ClassIslandScheduleDataService.cs b/LanMountainDesktop/Services/ClassIslandScheduleDataService.cs index ea5a785..267cdb6 100644 --- a/LanMountainDesktop/Services/ClassIslandScheduleDataService.cs +++ b/LanMountainDesktop/Services/ClassIslandScheduleDataService.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Globalization; using System.IO; @@ -39,7 +39,7 @@ public sealed class ClassIslandScheduleDataService : IClassIslandScheduleDataSer }; private static readonly IDeserializer CsesDeserializer = new DeserializerBuilder() - .WithNamingConvention(CamelCaseNamingConvention.Instance) + .WithNamingConvention(UnderscoredNamingConvention.Instance) .IgnoreUnmatchedProperties() .Build();