- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Muzzle
- {
- public partial class AgentPriorityHistory
- {
- public bool TooOld { get => (DateTime.Now - ChangeDate).Days >= 365; }
- }
- }
|