You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 regels
533 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. namespace StuMgmLib.MyNameSpace
  5. {
  6. public class Info
  7. {
  8. [Serializable]
  9. public class ClientSend
  10. {
  11. public short account { get; set; }
  12. public string password { get; set; }
  13. public string [] sqlStr { get; set; }
  14. }
  15. [Serializable]
  16. public class ServerSend
  17. {
  18. public short permission { get; set; }
  19. public DataSet ds { get; set; }
  20. }
  21. }
  22. }