-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
2,051 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// *********************************************************************** | ||
// Assembly : IronyModManager.Parser.Common | ||
// Author : Mario | ||
// Created : 04-18-2020 | ||
// | ||
// Last Modified By : Mario | ||
// Last Modified On : 04-18-2020 | ||
// *********************************************************************** | ||
// <copyright file="IParserMap.cs" company="Mario"> | ||
// Mario | ||
// </copyright> | ||
// <summary></summary> | ||
// *********************************************************************** | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace IronyModManager.Parser.Common | ||
{ | ||
/// <summary> | ||
/// Interface IParserMap | ||
/// </summary> | ||
public interface IParserMap | ||
{ | ||
#region Properties | ||
|
||
/// <summary> | ||
/// Gets or sets the directory path. | ||
/// </summary> | ||
/// <value>The directory path.</value> | ||
string DirectoryPath { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the preferred parser. | ||
/// </summary> | ||
/// <value>The preferred parser.</value> | ||
string PreferredParser { get; set; } | ||
|
||
#endregion Properties | ||
} | ||
} |
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
Oops, something went wrong.