practicekea_backend/microservices/_layers/domain/Models2/ActivityLogs.cs

22 lines
647 B
C#

using System;
namespace OnlineAssessment.Domain.Models
{
public partial class ActivityLogs
{
public int Id { get; set; }
public int UserId { get; set; }
public string Action { get; set; }
public string ItemType { get; set; }
public string Item { get; set; }
public DateTime? ActionDate { get; set; }
public DateTime? CreatedOn { get; set; }
public int? CreatedBy { get; set; }
public DateTime? UpdatedOn { get; set; }
public int? UpdatedBy { get; set; }
public bool? IsActive { get; set; }
public virtual Users User { get; set; }
}
}