DateType.cs 187 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DllEapEntity.Dtos
  5. {
  6. public enum DateType
  7. {
  8. Year=1,
  9. Month=2,
  10. Day=3
  11. }
  12. }