ServerTimeAttribute.cs 169 B

123456789
  1. using System;
  2. namespace Admin.Core.Common.Attributes
  3. {
  4. [AttributeUsage(AttributeTargets.Property)]
  5. public class ServerTimeAttribute : Attribute
  6. {
  7. }
  8. }