Skip to content

Commit

Permalink
Move MoneySetBuilder to Internal subnamespace
Browse files Browse the repository at this point in the history
  • Loading branch information
mikernet committed Mar 9, 2024
1 parent 088c12d commit 53f7fc4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions Source/Singulink.Globalization.Currency/IMoneySet.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Runtime.CompilerServices;
using Singulink.Globalization.Internal;

namespace Singulink.Globalization;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Runtime.CompilerServices;
using Singulink.Globalization.Internal;

namespace Singulink.Globalization;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
using System.ComponentModel;

namespace Singulink.Globalization;
namespace Singulink.Globalization.Internal;

/// <summary>
/// Factory for creating <see cref="MoneySet"/> instances.
/// Factory for creating <see cref="MoneySet"/> instances. This class is not visible to intellisense and is only used only for collection expression support on
/// <see cref="IMoneySet"/> and <see cref="IReadOnlyMoneySet"/>.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
public static class MoneySetBuilder
Expand Down

0 comments on commit 53f7fc4

Please sign in to comment.