public CommandEditPost(CommandsListAdapter parent, Post[] items, int index) : base(parent) { this.items = items; this.index = index; }
public CommandRemovePost(CommandsListAdapter parent, Post item) : base(parent) { this.item = item; }
public CommandAddPost(CommandsListAdapter parent, Post item) : base(parent) { this.items = new Post[] { item }; }
public CommandAddPost(CommandsListAdapter parent, Post[] items) : base(parent) { this.items = items; }
protected CommandsList(CommandsListAdapter parent) { this.parent = parent; }