You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			32 lines
		
	
	
		
			737 B
		
	
	
	
		
			C#
		
	
			
		
		
	
	
			32 lines
		
	
	
		
			737 B
		
	
	
	
		
			C#
		
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Text.Json.Serialization;
 | |
| using System.Threading.Tasks;
 | |
| using Txgy.RBS.Framework.FileWatcherHelper;
 | |
| 
 | |
| namespace Txgy.RBS.Framework
 | |
| {
 | |
|     public class ProcessConfig
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// server程序
 | |
|         /// </summary>
 | |
|       //  public ProcessInfo Server { get; set; }
 | |
|         /// <summary>
 | |
|         /// Recv程序
 | |
|         /// </summary>
 | |
|         public ProcessInfo RecvMqtt { get; set; }
 | |
|         /// <summary>
 | |
|         /// Apms(定位程序)程序
 | |
|         /// </summary>
 | |
|         public ProcessInfo Apms { get; set; }
 | |
| 
 | |
| 
 | |
| 
 | |
|         [JsonIgnore]
 | |
|        public FilesWatcherService FilesWatcherService {  get; set; }
 | |
|     }
 | |
| }
 |