Skip to content

Commit

Permalink
feat: add strategy type and store type to TenantResolvedContext (#508)
Browse files Browse the repository at this point in the history
* feat: add strategy type and store type to TenantResolvedContext
  • Loading branch information
AndrewTriesToCode authored Jan 25, 2022
1 parent f83f0b1 commit ef52fc2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Finbuckle.MultiTenant/Events/TenantResolvedContext.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
// Copyright Finbuckle LLC, Andrew White, and Contributors.
// Refer to the solution LICENSE file for more inforation.

using System;

namespace Finbuckle.MultiTenant
{
public class TenantResolvedContext
{
public object? Context { get; set; }
public ITenantInfo? TenantInfo { get; set; }
public Type? StrategyType { get; set; }
public Type? StoreType { get; set; }
// TODO consider refactoring to just MultiTenantContext<T>
}
}

0 comments on commit ef52fc2

Please sign in to comment.