CreateFacilityConst.cs 665 B

123456789101112131415161718192021222324
  1. /* ==============================================================================
  2. * 功能描述:CreateFacilityConst
  3. * 创 建 者:Garrett
  4. * 创建日期:2019/10/23 10:50:02
  5. * ==============================================================================*/
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. namespace Saga.PlugIn.CreateFacility
  12. {
  13. /// <summary>
  14. /// CreateFacilityConst
  15. /// </summary>
  16. public class CreateFacilityConst
  17. {
  18. /// <summary>
  19. /// 资产id
  20. /// </summary>
  21. public const string PropertyID = "PropertyID";
  22. }
  23. }