17 lines
		
	
	
		
			414 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			414 B
		
	
	
	
		
			C#
		
	
	
| using Microsoft.Extensions.Configuration;
 | |
| using Microsoft.Extensions.Configuration.Json;
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| 
 | |
| namespace IRaCIS.Core.Domain.Share
 | |
| {
 | |
|     public class ServiceVerifyConfigOption
 | |
|     {
 | |
|         public bool OpenUserComplexPassword { get; set; }
 | |
| 
 | |
|         public bool OpenSignDocumentBeforeWork { get; set; }
 | |
| 
 | |
| 
 | |
|         public bool OpenTrialRelationDelete { get; set; }
 | |
|     }
 | |
| } |