12 lines
335 B
C#
12 lines
335 B
C#
|
namespace Newsbot.Collector.Domain.Consts;
|
||
|
|
||
|
public class SourceTypes
|
||
|
{
|
||
|
public const string Reddit = "reddit";
|
||
|
public const string Rss = "rss";
|
||
|
public const string YouTube = "youtube";
|
||
|
public const string Twitch = "twitch";
|
||
|
public const string FinalFantasyXiv = "ffxiv";
|
||
|
public const string GitHub = "github";
|
||
|
|
||
|
}
|