demoVoroncov/Voroncov2103/Models/AgentPriorityHistory.cs
2025-03-26 10:22:01 +03:00

18 lines
357 B
C#

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