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; } } }