First actual commit
added sources to repository
This commit is contained in:
16
RedditSharp/SpamFilterSettings.cs
Normal file
16
RedditSharp/SpamFilterSettings.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace RedditSharp
|
||||
{
|
||||
public class SpamFilterSettings
|
||||
{
|
||||
public SpamFilterStrength LinkPostStrength { get; set; }
|
||||
public SpamFilterStrength SelfPostStrength { get; set; }
|
||||
public SpamFilterStrength CommentStrength { get; set; }
|
||||
|
||||
public SpamFilterSettings()
|
||||
{
|
||||
LinkPostStrength = SpamFilterStrength.High;
|
||||
SelfPostStrength = SpamFilterStrength.High;
|
||||
CommentStrength = SpamFilterStrength.High;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user