CommandLine.cs 409 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using Base;
  4. using Model;
  5. namespace Model
  6. {
  7. public class CommandLine: ICloneable
  8. {
  9. public string IP = "";
  10. public Options Options = new Options();
  11. public object Clone()
  12. {
  13. return MongoHelper.FromBson<CommandLine>(MongoHelper.ToBson(this));
  14. }
  15. }
  16. public class CommandLines
  17. {
  18. public List<CommandLine> Commands = new List<CommandLine>();
  19. }
  20. }