forked from MDCPS/DamageAssessment_Backend
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			503 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			503 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.ComponentModel.DataAnnotations.Schema;
 | |
| using System.ComponentModel.DataAnnotations;
 | |
| 
 | |
| namespace DamageAssesment.Api.DocuLinks.Db
 | |
| {
 | |
|     public class DoculinkAttachments
 | |
|     {
 | |
| 
 | |
|         [Key]
 | |
|         public int Id { get; set; }
 | |
|         [ForeignKey("Document")]
 | |
|         public int DocumentId { get; set; }
 | |
|         public string docName { get; set; }
 | |
|         public string Path { get; set; }
 | |
|         public bool IsAttachments { get; set; }
 | |
|         public int CustomOrder { get; set; }
 | |
|     }
 | |
| }
 |