15 lines
		
	
	
		
			304 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			304 B
		
	
	
	
		
			C#
		
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace kmCustomReportsNET;
 | 
						|
 | 
						|
internal class MdlEmailAddress
 | 
						|
{
 | 
						|
  public string EmailAddress { get; set; } = string.Empty;
 | 
						|
  public string DisplayName { get; set; } = string.Empty;
 | 
						|
}
 | 
						|
 |