2022-04-06 13:04:30 -05:00
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2019-02-18 19:30:38 -06:00
|
|
|
|
|
|
|
|
|
namespace AutomessageFeed
|
|
|
|
|
{
|
|
|
|
|
class Configuration : IBaseConfiguration
|
|
|
|
|
{
|
|
|
|
|
public bool EnableFeed { get; set; }
|
|
|
|
|
public string FeedUrl { get; set; }
|
2019-02-22 19:06:51 -06:00
|
|
|
|
public int MaxFeedItems { get; set; }
|
2019-02-18 19:30:38 -06:00
|
|
|
|
|
|
|
|
|
public IBaseConfiguration Generate()
|
|
|
|
|
{
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Name() => "AutomessageFeedConfiguration";
|
|
|
|
|
}
|
|
|
|
|
}
|