rssberg/config.cs

9 lines
191 B
C#
Raw Normal View History

2021-07-16 21:40:14 -04:00
using System.Collections.Generic;
namespace rssberg
{
public class Config
{
public Dictionary<string, string> FeedPairs {get;set;} = new Dictionary<string, string>();
}
}