LogOperation.cs 298 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Model.Entities
{
    public class LogOperation : BaseModel
    {
        public string LineCode { get; set; }
        public string Content { get; set; }
    }
}