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