17 lines
		
	
	
		
			635 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			635 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Marco.Pms.Model.Dtos.Directory
 | 
						|
{
 | 
						|
    public class CreateContactDto
 | 
						|
    {
 | 
						|
        public List<Guid>? ProjectIds { get; set; }
 | 
						|
        public string? Name { get; set; }
 | 
						|
        public List<CreateContactPhoneDto>? ContactPhones { get; set; }
 | 
						|
        public List<CreateContactEmailDto>? ContactEmails { get; set; }
 | 
						|
        public List<Guid>? BucketIds { get; set; }
 | 
						|
        public Guid? ContactCategoryId { get; set; }
 | 
						|
        public string? Description { get; set; }
 | 
						|
        public string? Organization { get; set; }
 | 
						|
        public string? Address { get; set; }
 | 
						|
        public List<ContactTagDto>? Tags { get; set; }
 | 
						|
    }
 | 
						|
}
 |