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