Files
AntiXssUF/AntiXssUF.TestSite/Controllers/TestModel.cs

16 lines
322 B
C#
Raw Normal View History

2020-03-16 01:20:53 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Ufangx.Xss;
namespace AntiXssUF.TestSite.Controllers
{
public class TestModel
{
public string Name { get; set; }
[XssSchemeName("ebay")]
public RichText RichText { get; set; }
}
}