-
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
34 changed files
with
1,451 additions
and
118 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
54 changes: 54 additions & 0 deletions
54
src/IronyModManager.Models.Common/IConflictSolverColors.cs
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,54 @@ | ||
// *********************************************************************** | ||
// Assembly : IronyModManager.Models.Common | ||
// Author : Mario | ||
// Created : 03-18-2024 | ||
// | ||
// Last Modified By : Mario | ||
// Last Modified On : 03-18-2024 | ||
// *********************************************************************** | ||
// <copyright file="IConflictSolverColors.cs" company="Mario"> | ||
// Mario | ||
// </copyright> | ||
// <summary></summary> | ||
// *********************************************************************** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
|
||
namespace IronyModManager.Models.Common | ||
{ | ||
/// <summary> | ||
/// An conflict solver colors interface. | ||
/// </summary> | ||
public interface IConflictSolverColors : IModel | ||
{ | ||
#region Properties | ||
|
||
/// <summary> | ||
/// Gets or sets the color of the conflict solver deleted line. | ||
/// </summary> | ||
/// <value>The color of the conflict solver deleted line.</value> | ||
string ConflictSolverDeletedLineColor { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the color of the conflict solver imaginary line. | ||
/// </summary> | ||
/// <value>The color of the conflict solver imaginary line.</value> | ||
string ConflictSolverImaginaryLineColor { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a value representing the conflict solver inserted line color. | ||
/// </summary> | ||
/// <value>The conflict solver inserted line color.</value> | ||
string ConflictSolverInsertedLineColor { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the color of the conflict solver modified line. | ||
/// </summary> | ||
/// <value>The color of the conflict solver modified line.</value> | ||
string ConflictSolverModifiedLineColor { 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// *********************************************************************** | ||
// Assembly : IronyModManager.Models | ||
// Author : Mario | ||
// Created : 03-18-2024 | ||
// | ||
// Last Modified By : Mario | ||
// Last Modified On : 03-18-2024 | ||
// *********************************************************************** | ||
// <copyright file="ConflictSolverColors.cs" company="Mario"> | ||
// Mario | ||
// </copyright> | ||
// <summary></summary> | ||
// *********************************************************************** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using IronyModManager.Models.Common; | ||
|
||
namespace IronyModManager.Models | ||
{ | ||
/// <summary> | ||
/// Class ConflictSolverColors. | ||
/// Implements the <see cref="BaseModel" /> | ||
/// Implements the <see cref="IConflictSolverColors" /> | ||
/// </summary> | ||
/// <seealso cref="BaseModel" /> | ||
/// <seealso cref="IConflictSolverColors" /> | ||
public class ConflictSolverColors : BaseModel, IConflictSolverColors | ||
{ | ||
#region Properties | ||
|
||
/// <summary> | ||
/// Gets or sets the color of the conflict solver deleted line. | ||
/// </summary> | ||
/// <value>The color of the conflict solver deleted line.</value> | ||
public virtual string ConflictSolverDeletedLineColor { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the color of the conflict solver imaginary line. | ||
/// </summary> | ||
/// <value>The color of the conflict solver imaginary line.</value> | ||
public virtual string ConflictSolverImaginaryLineColor { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets a value representing the conflict solver inserted line color. | ||
/// </summary> | ||
/// <value>The conflict solver inserted line color.</value> | ||
public virtual string ConflictSolverInsertedLineColor { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the color of the conflict solver modified line. | ||
/// </summary> | ||
/// <value>The color of the conflict solver modified line.</value> | ||
public virtual string ConflictSolverModifiedLineColor { 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
52 changes: 52 additions & 0 deletions
52
src/IronyModManager.Services.Common/IConflictSolverColorsService.cs
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,52 @@ | ||
| ||
// *********************************************************************** | ||
// Assembly : IronyModManager.Services.Common | ||
// Author : Mario | ||
// Created : 03-18-2024 | ||
// | ||
// Last Modified By : Mario | ||
// Last Modified On : 03-18-2024 | ||
// *********************************************************************** | ||
// <copyright file="IConflictSolverColorsService.cs" company="Mario"> | ||
// Mario | ||
// </copyright> | ||
// <summary></summary> | ||
// *********************************************************************** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using IronyModManager.Models.Common; | ||
|
||
namespace IronyModManager.Services.Common | ||
{ | ||
|
||
/// <summary> | ||
/// An conflict solver colors service interface. | ||
/// </summary> | ||
public interface IConflictSolverColorsService : IBaseService | ||
{ | ||
#region Methods | ||
|
||
/// <summary> | ||
/// Get. | ||
/// </summary> | ||
/// <returns>An IConflictSolverColors.<see cref="IConflictSolverColors" /></returns> | ||
IConflictSolverColors Get(); | ||
|
||
/// <summary> | ||
/// Has any. | ||
/// </summary> | ||
/// <param name="color">The color.</param> | ||
/// <returns>A bool.</returns> | ||
bool HasAny(IConflictSolverColors color); | ||
|
||
/// <summary> | ||
/// Save. | ||
/// </summary> | ||
/// <param name="color">The color.</param> | ||
void Save(IConflictSolverColors color); | ||
|
||
#endregion Methods | ||
} | ||
} |
Oops, something went wrong.