AppTimes.cs 251 B

12345678910111213
  1. using System;
  2. using Abp.Dependency;
  3. namespace VberAdmin.Timing;
  4. public class AppTimes : ISingletonDependency
  5. {
  6. /// <summary>
  7. /// Gets the startup time of the application.
  8. /// </summary>
  9. public DateTime StartupTime { get; set; }
  10. }