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

19 lines
495 B
C#
Raw Permalink Normal View History

2024-12-02 13:24:34 +00:00
using System;
using System.Collections.Generic;
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 bool? IsActive { get; set; }
public virtual Users User { get; set; }
}
}