Open alexeymarkov opened 5 years ago
`interface IBaseCommand { string ContextId { get; set; } }
class MyCommand : IBaseCommand { string ContextId { get; set; } string Name { get; set; } }
.MapClaimToCommandProperty("ContextId", x => x.ContextId) `
If you are agree that could be helpful I will provide a PR.
That sounds useful - thanks.
`interface IBaseCommand { string ContextId { get; set; } }
class MyCommand : IBaseCommand { string ContextId { get; set; } string Name { get; set; } }
.MapClaimToCommandProperty("ContextId", x => x.ContextId)
`
If you are agree that could be helpful I will provide a PR.