using System.Collections.ObjectModel; namespace PdmSwPlugin.Common.Entity { public class Page { private ObservableCollection _records; public ObservableCollection records { get { return _records; } set { _records = value; } } private long _current; public long current { get { return _current; } set { _current = value; } } private long _total; public long total { get { return _total; } set { _total = value; } } private long _size; public long size { get { return _size; } set { _size = value; } } } }