11 lines
		
	
	
		
			274 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			274 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Marco.Pms.Model.Dtos.Directory
 | 
						|
{
 | 
						|
    public class UpdateContactPhoneDto
 | 
						|
    {
 | 
						|
        public Guid? Id { get; set; }
 | 
						|
        public string? Label { get; set; }
 | 
						|
        public string? PhoneNumber { get; set; }
 | 
						|
        public Guid? ContactId { get; set; }
 | 
						|
    }
 | 
						|
}
 |