ValidateEntity.cs

15 lines | 292 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

using Newtonsoft.Json.Linq;

namespace Learn_CSS.APP.Web.Models.ViewEntity
{
    public class ValidateEntity
    {
        public int ID { set; get; }
        public JToken Elements { set; get; }
    }
}