mirror of
https://github.com/sphildreth/roadie
synced 2025-02-18 14:08:29 +00:00
9 lines
203 B
C#
9 lines
203 B
C#
|
namespace Roadie.Library.Configuration
|
|||
|
{
|
|||
|
public interface IReplacementString
|
|||
|
{
|
|||
|
string Key { get; set; }
|
|||
|
int Order { get; set; }
|
|||
|
string ReplaceWith { get; set; }
|
|||
|
}
|
|||
|
}
|