13 lines
		
	
	
		
			241 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			241 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Data;
 | |
| 
 | |
| namespace Connected.Entities.Storage
 | |
| {
 | |
| 	public interface IStorageParameter
 | |
| 	{
 | |
| 		string? Name { get; init; }
 | |
| 		object? Value { get; set; }
 | |
| 		ParameterDirection Direction { get; init; }
 | |
| 		DbType Type { get; init; }
 | |
| 	}
 | |
| }
 | 
