Skip to content

Commit

Permalink
Fix SA1402 violations
Browse files Browse the repository at this point in the history
SA1402: FileMayOnlyContainASingleType
  • Loading branch information
danjov committed Nov 26, 2024
1 parent dd65381 commit 1c0a70f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Geodatenbezug/Models/NutzungsflaechenCatalog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ namespace Geodatenbezug.Models;
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
#pragma warning disable SA1600 // Elements should be documented
#pragma warning disable SA1649 // File name should match first type name
#pragma warning disable SA1402 // File may only contain a single type
public class Transfer
{
[XmlElement("DATASECTION")]
Expand Down Expand Up @@ -71,6 +72,7 @@ public class LocalisationCHV1LocalisedText
[XmlElement("Text")]
public required string Text { get; set; }
}
#pragma warning restore SA1402 // File may only contain a single type
#pragma warning restore SA1649 // File name should match first type name
#pragma warning restore SA1600 // Elements should be documented
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member

0 comments on commit 1c0a70f

Please sign in to comment.