FIC_Solar/SolarPower/Models/OperatorLog.cs
2021-06-09 15:03:24 +08:00

18 lines
460 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SolarPower.Models.OperatorLogModel
{
public class OperatorLog
{
public int Id { get; set; }
public string ControllerName { get; set; }
public string ActionName { get; set; }
public string Parameter { get; set; }
public int CreatedBy { get; set; }
public string CreatedAt { get; set; }
}
}