Entity.cs 388 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.ESEntity
  5. {
  6. //#region 查询实体类
  7. public class Entity
  8. {
  9. /// <summary>
  10. ///
  11. /// </summary>
  12. public string name { get; set; }
  13. /// <summary>
  14. ///
  15. /// </summary>
  16. public string type { get; set; }
  17. }
  18. //#endregion
  19. }