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.
|
- using System;
- using System.Collections.Generic;
- using System.Data;
-
- namespace StuMgmLib.MyNameSpace
- {
- public class Info
- {
- [Serializable]
- public class ClientSend
- {
- public short account { get; set; }
- public string password { get; set; }
- public string [] sqlStr { get; set; }
- }
- [Serializable]
- public class ServerSend
- {
- public short permission { get; set; }
- public DataSet ds { get; set; }
- }
- }
-
-
- }
|