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.
22 lines
481 B
22 lines
481 B
using System.Collections.Generic; |
|
using AX.Network.Protocols; |
|
using AX.NetworkSystem; |
|
|
|
public struct CoursewarePagingRequestInfo |
|
{ |
|
public int CurrentPage; |
|
public int NumberPerPage; |
|
public string CreatorID; |
|
public int Pattern; |
|
} |
|
|
|
|
|
public class GET_COURSEWARE_PAGEINFO_REPLY : NetworkMessageBehaviour |
|
{ |
|
public List<int> PageList; |
|
protected override void Execute(BinaryMessage message) |
|
{ |
|
PageList=message.Body.Deserialize<List<int>>(); |
|
} |
|
|
|
}
|
|
|