mirror of
https://github.com/sphildreth/roadie
synced 2024-11-26 14:10:21 +00:00
12 lines
No EOL
274 B
C#
12 lines
No EOL
274 B
C#
using System;
|
|
|
|
namespace Roadie.Library.Configuration
|
|
{
|
|
[Serializable]
|
|
public class ReplacementString : IReplacementString
|
|
{
|
|
public string Key { get; set; }
|
|
public int Order { get; set; }
|
|
public string ReplaceWith { get; set; }
|
|
}
|
|
} |