Compare commits

...

2 Commits

Author SHA1 Message Date
he ebf6c225f3 Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details
2026-04-15 11:51:12 +08:00
he 7083cc4493 修改默认值 2026-04-15 11:51:10 +08:00
1 changed files with 2 additions and 2 deletions

View File

@ -246,7 +246,7 @@ public enum ReadingOrder
public class DefaultSegmentNameDto
{
public string SegmentationName { get; set; } =string.Empty;
public string SegmentationName { get; set; } = "Segmentation";
public List<string> SegmentNameList { get; set; }= new List<string>();
public List<string> SegmentNameList { get; set; }= new List<string>() { "Segment" };
}