Skip to content

Commit

Permalink
#632 #633 #634 #635 #636: Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikfroehling committed Apr 6, 2024
1 parent 9e8fed4 commit fc2bee5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
15 changes: 15 additions & 0 deletions Source/Lib/Trakt.NET/Modules/Notes/TraktNotesModule.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
namespace TraktNet.Modules
{
/// <summary>
/// Provides access to data retrieving methods specific to notes.
/// <para>
/// This module contains all methods of the <a href ="https://trakt.docs.apiary.io/#reference/notes">"Trakt API Doc - Notes"</a> section.
/// </para>
/// </summary>
public partial class TraktNotesModule : ATraktModule
{
internal TraktNotesModule(TraktClient client) : base(client)
{
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,8 @@
/// This module contains all methods of the <a href ="https://trakt.docs.apiary.io/#reference/notes">"Trakt API Doc - Notes"</a> section.
/// </para>
/// </summary>
public class TraktNotesModule : ATraktModule
public partial class TraktNotesModule : ATraktModule
{
internal TraktNotesModule(TraktClient client) : base(client)
{
}

/// <summary>
/// Adds notes for a <see cref="ITraktMovie" />.
/// <para>OAuth authorization required.</para>
Expand Down

0 comments on commit fc2bee5

Please sign in to comment.