Skip to content

Commit

Permalink
add missing xml comments
Browse files Browse the repository at this point in the history
  • Loading branch information
HauklandJ committed Dec 13, 2024
1 parent 624ee1d commit 46ed83e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Altinn.App.Core/Extensions/StringExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static bool DoesNotContain(this string s, char ch)
}

/// <summary>
///
/// Checks if a given character exists within a string
/// </summary>
/// <returns>true if it contains exactly one, false if it contains zero or more than one</returns>
public static bool ContainsExactlyOne(this string s, char ch)
Expand Down
4 changes: 2 additions & 2 deletions src/Altinn.App.Core/Features/Signing/Models/SigneeContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ public sealed class SigneeContext
// public required SigneeParty SigneeParty { get; set; }

/// <summary>
///
/// The organisation signee.
/// </summary>
[JsonPropertyName("organisationSignee")]
public OrganisationSignee? OrganisationSignee { get; set; }

/// <summary>
///
/// The person signee.
/// </summary>
[JsonPropertyName("personSignee")]
public PersonSignee? PersonSignee { get; set; }
Expand Down
4 changes: 2 additions & 2 deletions src/Altinn.App.Core/Features/Signing/Models/SigneeParty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Altinn.App.Core.Features.Signing.Models;
public class PersonSignee : ISigneeParty
{
/// <summary>
///
/// The name of the signee.
/// </summary>
[JsonPropertyName("displayName")]
public required string DisplayName { get; init; }
Expand Down Expand Up @@ -44,7 +44,7 @@ public class PersonSignee : ISigneeParty
public class OrganisationSignee : ISigneeParty
{
/// <summary>
///
/// The name of the organisation.
/// </summary>
[JsonPropertyName("displayName")]
public required string DisplayName { get; init; }
Expand Down
2 changes: 1 addition & 1 deletion src/Altinn.App.Core/Interface/IAppResources.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public interface IAppResources
LayoutSets? GetLayoutSet();

/// <summary>
///
/// Get the layout set definition for a given task. Return null if no layoutsets exists
/// </summary>
LayoutSet? GetLayoutSetForTask(string taskId);

Expand Down
2 changes: 1 addition & 1 deletion src/Altinn.App.Core/Internal/App/IAppResources.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public interface IAppResources
LayoutSets? GetLayoutSet();

/// <summary>
///
/// Get the layout set definition for a given task. Return null if no layoutsets exists
/// </summary>
LayoutSet? GetLayoutSetForTask(string taskId);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class ExclusiveGateway : ProcessElement
public string? Default { get; set; }

/// <summary>
///
/// Gets or sets the extension elements of the exclusive gateway.
/// </summary>
[XmlElement("extensionElements")]
public ExtensionElements? ExtensionElements { get; set; }
Expand Down

0 comments on commit 46ed83e

Please sign in to comment.