Hi!
I was trying to make my bot conversation expire after 10 minutes like shown in this document https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-howto-expire-conversation?view=azure-bot-service-4.0&tabs=csharp
However, when I add the following thing :
protected readonly IStatePropertyAccessor<DateTime> LastAccessedTimeProperty
I get an error once I try to update the bot file into the App service.
What I am not understanding is that a similar string ( protected readonly IStatePropertyAccessor<DialogState> DialogStateProperty; ) worked just fine.
