TaskEntity.cs

17 lines | 415 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace Learn_CSS.APP.Web.Models.Entities
{
    public class TaskEntity
    {
        public string FileName { set; get; }

        public string HTML_Text { set; get; }
        public string HTML_Template { set; get; }
        public string CSS_Template { set; get; }
        public string JSON_Result { set; get; }
    }
}