28 lines
		
	
	
		
			567 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			567 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace Hermes.Model {
 | 
						|
    public class Preferences {
 | 
						|
        public int Id {
 | 
						|
            get; set;
 | 
						|
        }
 | 
						|
        public string VilleCP {
 | 
						|
            get; set;
 | 
						|
        }
 | 
						|
        public string Ville {
 | 
						|
            get; set;
 | 
						|
        }
 | 
						|
        public string ovhSmsServiceName {
 | 
						|
            get; set;
 | 
						|
        }
 | 
						|
        public string ovhSmsApplicationName {
 | 
						|
            get; set;
 | 
						|
        }
 | 
						|
        public string ovhSmsApplicationKey {
 | 
						|
            get; set;
 | 
						|
        }
 | 
						|
        public string ovhSmsConsumerKey {
 | 
						|
            get; set;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |