Skip to content

Commit

Permalink
Xml comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikasoukhov committed Feb 18, 2025
1 parent 3fe5462 commit cc6875b
Show file tree
Hide file tree
Showing 6 changed files with 1,141 additions and 1,133 deletions.
2 changes: 1 addition & 1 deletion Backup.Mega/Native/Exceptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public UploadException(string error)
}
}

public enum ApiResultCode
enum ApiResultCode
{
/// <summary>
/// API_OK (0): Success
Expand Down
4 changes: 2 additions & 2 deletions Backup.Mega/Native/Interface/IAccountInformation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
using System.Collections.Generic;

public interface IAccountInformation
interface IAccountInformation
{
long TotalQuota { get; }

Expand All @@ -11,7 +11,7 @@ public interface IAccountInformation
IEnumerable<IStorageMetrics> Metrics { get; }
}

public interface IStorageMetrics
interface IStorageMetrics
{
string NodeId { get; }

Expand Down
8 changes: 4 additions & 4 deletions Backup.Mega/Native/Interface/INode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
using System;

public interface INode : IEquatable<INode>
interface INode : IEquatable<INode>
{
string Id { get; }

Expand Down Expand Up @@ -38,7 +38,7 @@ internal interface INodeCrypto
byte[] FullKey { get; }
}

public interface IFileAttribute
interface IFileAttribute
{
int Id { get; }

Expand All @@ -47,13 +47,13 @@ public interface IFileAttribute
string Handle { get; }
}

public enum FileAttributeType
enum FileAttributeType
{
Thumbnail = 0,
Preview = 1
}

public enum NodeType
enum NodeType
{
File = 0,
Directory,
Expand Down
4 changes: 2 additions & 2 deletions Backup.Mega/Native/Interface/ISession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System;
using System.Net;

public interface ISession
interface ISession
{
string Client { get; }

Expand All @@ -21,7 +21,7 @@ public interface ISession
}

[Flags]
public enum SessionStatus
enum SessionStatus
{
Undefined = 0,
Current = 1 << 0,
Expand Down
2 changes: 1 addition & 1 deletion Backup.Mega/Native/Interface/IWebClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading;
using System.Threading.Tasks;

public interface IWebClient
interface IWebClient
{
int BufferSize { get; set; }

Expand Down
Loading

0 comments on commit cc6875b

Please sign in to comment.