FileBrowseServer.cs 389 B

12345678910111213141516171819202122
  1. using Rac.Common;
  2. using System;
  3. namespace Rac
  4. {
  5. public class FileBrowseServer : BaseService
  6. {
  7. public FileBrowseServer(string db)
  8. {
  9. }
  10. public override void Start()
  11. {
  12. throw new NotImplementedException();
  13. }
  14. public override void Stop()
  15. {
  16. throw new NotImplementedException();
  17. }
  18. }
  19. }