Skip to content

Commit

Permalink
Formatting files and updating the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuck committed Jan 11, 2022
1 parent ea792ca commit eabb06f
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/Aspects/Abstract/IActivated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ public interface IActivated
{
DateTime? ActivationMomentUtc { get; set; }
}
}
}
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/Aspects/Abstract/IAudited.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ public interface IAudited<TIdentity> : ICreated, IRevised
TIdentity CreatedBy { get; set; }
TIdentity RevisedBy { get; set; }
}
}
}
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/Aspects/Abstract/ICreated.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ public interface ICreated
{
DateTime CreationMomentUtc { get; set; }
}
}
}
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/Aspects/Abstract/IDeleted.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ public interface IDeleted
{
DateTime? DeletionMomentUtc { get; set; }
}
}
}
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/Aspects/Abstract/IRevised.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ public interface IRevised
{
DateTime RevisionMomentUtc { get; set; }
}
}
}
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/Aspects/Abstract/IType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ public interface IType
String Name { get; set; }
String ShortName { get; set; }
}
}
}
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/Entities/Abstract/EntityBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ public abstract class EntityBase<TKey> : IEntity<TKey> where TKey : struct
{
public TKey Key { get; set; }
}
}
}
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/Entities/Abstract/IEntity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ public interface IEntity<TKey> where TKey : struct
{
TKey Key { get; set; }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ public interface IMultiTenantEntity<TKey, TTenantKey> : IEntity<TKey> where TKey

Boolean IsValidTenant(TTenantKey? tenantId);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ public abstract class MultiTenantEntityBase<TKey, TTenantKey> : EntityBase<TKey>

public Boolean IsValidTenant(TTenantKey? tenantId) => TenantId.Equals(tenantId);
}
}
}
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/ValueObjects/Abstract/IPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ public interface IPage<out T> : IPage
IReadOnlyCollection<T> Items { get; }
Int32 TotalCount { get; }
}
}
}
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/ValueObjects/Date.cs
Original file line number Diff line number Diff line change
Expand Up @@ -196,4 +196,4 @@ public static Boolean TryParseExact(String s, String[] formats, IFormatProvider
return success;
}
}
}
}
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/ValueObjects/Page.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ public Page(IReadOnlyCollection<T> items, Int32 total, Int32 page, Int32 size)

#endregion
}
}
}
2 changes: 1 addition & 1 deletion src/YuckQi.Domain/YuckQi.Domain.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Kevin J Lambert</Authors>
<Version>0.5.0</Version>
<Version>1.0.0</Version>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Description>A .NET library for bootstrapping a domain model project.</Description>
</PropertyGroup>
Expand Down

0 comments on commit eabb06f

Please sign in to comment.