Identity.cs 305 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Taobao.Top.Link.Endpoints
  5. {
  6. /// <summary>endpoint's id
  7. /// </summary>
  8. public interface Identity
  9. {
  10. Identity Parse(object data);
  11. void Render(object to);
  12. bool Equals(Identity id);
  13. }
  14. }