First actual commit
added sources to repository
This commit is contained in:
14
RedditSharp/CaptchaResponse.cs
Normal file
14
RedditSharp/CaptchaResponse.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace RedditSharp
|
||||
{
|
||||
public class CaptchaResponse
|
||||
{
|
||||
public readonly string Answer;
|
||||
|
||||
public bool Cancel { get { return string.IsNullOrEmpty(Answer); } }
|
||||
|
||||
public CaptchaResponse(string answer = null)
|
||||
{
|
||||
Answer = answer;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user