ibms-dome/Backend/Models/OperatorLog.cs

18 lines
447 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Backend.Models
{
public class OperatorLog
{
public int id { get; set; }
public string controller_name { get; set; }
public string action_name { get; set; }
public string parameter { get; set; }
public string created_by { get; set; }
public string created_at { get; set; }
}
}