Skip to content

Commit ccbf5ba

Browse files
authored
Merge pull request #10 from niko-olas/Helper.Domain
MOD to Helper Domain
2 parents e852e88 + bb52053 commit ccbf5ba

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

src/Modular.Monolithic.Architecture.Helper.Domain/Events/DomainEvent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public class DomainEvent : IDomainEvent
55
public Guid Id { get; }
66
public DateTime OccurredOn { get; }
77

8-
public DomainEvent()
8+
protected DomainEvent()
99
{
1010
Id = Guid.NewGuid();
1111
OccurredOn = DateTime.UtcNow;

src/Modular.Monolithic.Architecture.Helper.Domain/Modular.Monolithic.Architecture.Helper.Domain.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<Pack>True</Pack>
3737
<PackagePath></PackagePath>
3838
</None>
39-
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
39+
<None Include="README.md" Pack="true" PackagePath="\" />
4040
</ItemGroup>
4141

4242

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# A Modular Monolithic Architecture Helper Domain
2+
3+
[![Lint Code Base](https://github.com/niko-olas/Modular.Monolithic.Architecture.Helper/actions/workflows/linter.yml/badge.svg)](https://github.com/niko-olas/Modular.Monolithic.Architecture.Helper/actions/workflows/linter.yml)
4+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/niko-olas/Modular.Monolithic.Architecture.Helper/blob/master/LICENSE)
5+
6+
7+
A small library to improve and simplify the development of applications based on the Modular Monolith architecture for domain layer

0 commit comments

Comments
 (0)