demka/demofinish/Model/Agentpriorityhistory.cs
2025-04-03 23:00:11 +03:00

18 lines
342 B
C#

using System;
using System.Collections.Generic;
namespace demofinish.Model;
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!;
}