Agents/Models/Agentpriorityhistory.cs
2025-03-24 12:34:12 +03:00

18 lines
339 B
C#

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