roadie/Roadie.Api.Library/Configuration/IReplacementString.cs

9 lines
203 B
C#
Raw Normal View History

2019-06-01 23:27:17 -05:00
namespace Roadie.Library.Configuration
{
public interface IReplacementString
{
string Key { get; set; }
int Order { get; set; }
string ReplaceWith { get; set; }
}
}