roadie/Roadie.Api.Library/Configuration/IReplacementString.cs
2019-06-01 23:27:17 -05:00

9 lines
No EOL
203 B
C#

namespace Roadie.Library.Configuration
{
public interface IReplacementString
{
string Key { get; set; }
int Order { get; set; }
string ReplaceWith { get; set; }
}
}