Skip to content

Commit

Permalink
fix: resolve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
qinezh committed Apr 23, 2023
1 parent 2818fd7 commit bb3e85b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ public class NotificationOptions
public string BotAppId { get; set; } = string.Empty;

/// <summary>
/// An optional store to persist bot notification connections.
/// An optional store to persist bot notification target references.
/// </summary>
/// <remarks>
/// <para>
/// If <c>Store</c> is not provided, a default local store will be used, which stores notification connections into:
/// If <c>Store</c> is not provided, a default local store will be used, which stores notification target references into:
/// </para>
/// <list type="bullet">
/// <item>
Expand All @@ -38,11 +38,11 @@ public class NotificationOptions
public IConversationReferenceStore Store { get; set; }

/// <summary>
/// An optional storage to persist bot notification connections.
/// An optional storage to persist bot notification target references.
/// </summary>
/// <remarks>
/// <para>
/// If <c>Storage</c> is not provided, a default local file storage will be used, which stores notification connections into:
/// If <c>Storage</c> is not provided, a default local file storage will be used, which stores notification target references into:
/// </para>
/// <list type="bullet">
/// <item>
Expand All @@ -59,7 +59,7 @@ public class NotificationOptions
/// It's recommended to use your own shared storage for production environment.
/// </para>
/// </remarks>
[Obsolete($"Use {nameof(Store)} to customize the way to persist bot notification connections instead.")]
[Obsolete($"Use {nameof(Store)} to customize the way to persist bot notification target references instead.")]
public INotificationTargetStorage Storage { get; set; }
}
}
1 change: 1 addition & 0 deletions packages/dotnet-sdk/src/TeamsFx/Conversation/PagedData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public class PagedData<T>
/// </summary>
/// <value>
/// The Continuation Token to pass to get the next page of results.
/// Null or empty token means the page reaches the end.
/// </value>
public string ContinuationToken { get; set; }
}
Expand Down

0 comments on commit bb3e85b

Please sign in to comment.