diff --git a/Source/ZoomNet/Resources/IWebinars.cs b/Source/ZoomNet/Resources/IWebinars.cs index 4a9ea232..82546c96 100644 --- a/Source/ZoomNet/Resources/IWebinars.cs +++ b/Source/ZoomNet/Resources/IWebinars.cs @@ -460,6 +460,6 @@ public interface IWebinars /// /// An array of . /// - Task GetWebinarTemplatesAsync(string userId, CancellationToken cancellationToken = default); + Task GetTemplatesAsync(string userId, CancellationToken cancellationToken = default); } } diff --git a/Source/ZoomNet/Resources/Webinars.cs b/Source/ZoomNet/Resources/Webinars.cs index 5550a65d..901de98a 100644 --- a/Source/ZoomNet/Resources/Webinars.cs +++ b/Source/ZoomNet/Resources/Webinars.cs @@ -795,7 +795,7 @@ public Task GetTrackingSourcesAsync(long webinarId, Cancellati /// /// An array of . /// - public Task GetWebinarTemplatesAsync(string userId, CancellationToken cancellationToken = default) + public Task GetTemplatesAsync(string userId, CancellationToken cancellationToken = default) { return _client .GetAsync($"users/{userId}/webinar_templates")