ApplyType.cs 421 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Winsoft.GOV.Framework.Model
  7. {
  8. public class ApplyType
  9. {
  10. public static string[] Names = { "即办", "全程网上申办,在线取件", "全程网上申办,快递送达", "网上申报、预审,窗口核验、取件", "窗口申报,快递送达" };
  11. }
  12. }