瀏覽代碼

Merge pull request #9915 from Bond-009/stylecop

Bond-009 1 年之前
父節點
當前提交
a1eb2f6ea8

+ 1 - 1
Directory.Packages.props

@@ -71,7 +71,7 @@
     <PackageVersion Include="SmartAnalyzers.MultithreadingAnalyzer" Version="1.1.31" />
     <PackageVersion Include="SQLitePCL.pretty.netstandard" Version="3.1.0" />
     <PackageVersion Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.5" />
-    <PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.435" />
+    <PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.507" />
     <PackageVersion Include="Swashbuckle.AspNetCore.ReDoc" Version="6.4.0" />
     <PackageVersion Include="Swashbuckle.AspNetCore" Version="6.2.3" />
     <PackageVersion Include="System.Globalization" Version="4.3.0" />

+ 2 - 2
Jellyfin.Api/Models/LiveTvDtos/ChannelMappingOptionsDto.cs

@@ -13,12 +13,12 @@ public class ChannelMappingOptionsDto
     /// <summary>
     /// Gets or sets list of tuner channels.
     /// </summary>
-    required public IReadOnlyList<TunerChannelMapping> TunerChannels { get; set; }
+    public required IReadOnlyList<TunerChannelMapping> TunerChannels { get; set; }
 
     /// <summary>
     /// Gets or sets list of provider channels.
     /// </summary>
-    required public IReadOnlyList<NameIdPair> ProviderChannels { get; set; }
+    public required IReadOnlyList<NameIdPair> ProviderChannels { get; set; }
 
     /// <summary>
     /// Gets or sets list of mappings.

+ 1 - 1
Jellyfin.Api/Models/UserDtos/CreateUserByName.cs

@@ -11,7 +11,7 @@ public class CreateUserByName
     /// Gets or sets the username.
     /// </summary>
     [Required]
-    required public string Name { get; set; }
+    public required string Name { get; set; }
 
     /// <summary>
     /// Gets or sets the password.

+ 1 - 1
Jellyfin.Api/Models/UserDtos/ForgotPasswordDto.cs

@@ -11,5 +11,5 @@ public class ForgotPasswordDto
     /// Gets or sets the entered username to have its password reset.
     /// </summary>
     [Required]
-    required public string EnteredUsername { get; set; }
+    public required string EnteredUsername { get; set; }
 }

+ 1 - 1
Jellyfin.Api/Models/UserDtos/ForgotPasswordPinDto.cs

@@ -11,5 +11,5 @@ public class ForgotPasswordPinDto
     /// Gets or sets the entered pin to have the password reset.
     /// </summary>
     [Required]
-    required public string Pin { get; set; }
+    public required string Pin { get; set; }
 }

+ 1 - 1
MediaBrowser.Model/Dlna/MediaOptions.cs

@@ -62,7 +62,7 @@ namespace MediaBrowser.Model.Dlna
         /// <summary>
         /// Gets or sets the device profile.
         /// </summary>
-        required public DeviceProfile Profile { get; set; }
+        public required DeviceProfile Profile { get; set; }
 
         /// <summary>
         /// Gets or sets a media source id. Optional. Only needed if a specific AudioStreamIndex or SubtitleStreamIndex are requested.