2025-03-25 18:36:42 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2025-04-03 20:00:11 +00:00
|
|
|
|
namespace demofinish.Model;
|
2025-03-25 18:36:42 +00:00
|
|
|
|
|
|
|
|
|
public partial class Agentpriorityhistory
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Agentid { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime Changedate { get; set; }
|
|
|
|
|
|
|
|
|
|
public int Priorityvalue { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual Agent Agent { get; set; } = null!;
|
|
|
|
|
}
|