Skip to content

Commit

Permalink
I guess some things ought to be public...
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuck committed Dec 10, 2020
1 parent be99933 commit 2ce505f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/YuckQi.Domain/Result.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace YuckQi.Domain
{
internal class Result
public class Result
{
#region Properties

Expand All @@ -14,7 +14,7 @@ internal class Result
#endregion
}

internal class Result<T> : Result
public class Result<T> : Result
{
#region Properties

Expand Down
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/ResultCode.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace YuckQi.Domain
{
internal readonly struct ResultCode
public readonly struct ResultCode
{
#region Private Members

Expand Down
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/ResultDetail.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace YuckQi.Domain
{
internal class ResultDetail
public class ResultDetail
{
#region Properties

Expand Down
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/ResultType.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace YuckQi.Domain
{
internal enum ResultType
public enum ResultType
{
Unknown = 0,
Warning = 1,
Expand Down
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/YuckQi.Domain.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Kevin J Lambert</Authors>
<Company />
<Version>0.0.1</Version>
<Version>0.0.2</Version>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>

Expand Down

0 comments on commit 2ce505f

Please sign in to comment.