25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

37 satır
648 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. namespace StuMgmLib.MyNameSpace
  5. {
  6. [Serializable]
  7. public class UserInfo
  8. {
  9. public string Account;
  10. public string Password;
  11. public UserInfo(string account,string password)
  12. {
  13. Account = account;
  14. Password = password;
  15. }
  16. }
  17. [Serializable]
  18. public class UserInfo
  19. {
  20. public short UserLevel;
  21. }
  22. [Serializable]
  23. public class ServerSend
  24. {
  25. public short permission { get; set; }
  26. public DataSet ds { get; set; }
  27. }
  28. }