25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
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. }