-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert change to build for x64 only; build for 'AnyCPU' (#15)
Started documenting public methods Updated .editrorconfig and fixing code analysis issues Added stylecop
- Loading branch information
Showing
43 changed files
with
1,169 additions
and
430 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
namespace OfxNet; | ||
|
||
/// <summary> | ||
/// Base class inherited by the different bank account types. | ||
/// </summary> | ||
public class OfxAccount | ||
{ | ||
/// <summary> | ||
/// Gets or sets the account number. | ||
/// </summary> | ||
public string? AccountNumber { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the checksum. | ||
/// </summary> | ||
public string? Checksum { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,22 @@ | ||
namespace OfxNet; | ||
|
||
/// <summary> | ||
/// OFX Bank account information. | ||
/// </summary> | ||
public class OfxBankAccount : OfxAccount | ||
{ | ||
/// <summary> | ||
/// Gets or sets the bank identifier. | ||
/// </summary> | ||
public string? BankId { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the branch identifier. | ||
/// </summary> | ||
public string? BranchId { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the type of account. | ||
/// </summary> | ||
public OfxAccountType AccountType { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,22 @@ | ||
namespace OfxNet; | ||
|
||
/// <summary> | ||
/// OFX status aggregate. | ||
/// </summary> | ||
public class OfxStatus | ||
{ | ||
/// <summary> | ||
/// Gets or sets the OFX error code. | ||
/// </summary> | ||
public int Code { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the severity of the error. | ||
/// </summary> | ||
public OfxSeverity Severity { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the textual explanation from the financial institution. | ||
/// </summary> | ||
public string? Message { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.