mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 04:33:16 +00:00
14 lines
307 B
C#
14 lines
307 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Roadie.Library.Configuration
|
|
{
|
|
[Serializable]
|
|
public class ReplacementString
|
|
{
|
|
public int Order { get; set; }
|
|
public string Key { get; set; }
|
|
public string ReplaceWith { get; set; }
|
|
}
|
|
}
|