AgentPriorityHistory.cs 278 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Muzzle
  7. {
  8. public partial class AgentPriorityHistory
  9. {
  10. public bool TooOld { get => (DateTime.Now - ChangeDate).Days >= 365; }
  11. }
  12. }