Skip to content

Instantly share code, notes, and snippets.

@bhdryrdm
Created June 3, 2018 15:01
Show Gist options
  • Save bhdryrdm/8471d92fe4e8cf755a74253dbe376eb4 to your computer and use it in GitHub Desktop.
Save bhdryrdm/8471d92fe4e8cf755a74253dbe376eb4 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DevF_LABS.RequestResponse.XSS.StoredXSS
{
public class SXSS_S3_CKEditor_Request
{
[Required(ErrorMessage = "CKEditor değeri zorunlu alandır!")]
[StringLength(4000, ErrorMessage = "Cookie ismi 4000 karakterden fazla olamaz!")]
public string SXSS_S3_CKEditorRequest_Value { get; set; }
[Required(ErrorMessage = "GReCaptcha zorunlu alandır!")]
public string SXSS_S3_CKEditorRequest_gReCaptcha { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment