17 lines
495 B
C#
17 lines
495 B
C#
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;
|
|
}
|
|
}
|
|
}
|