added multi language support for doculink attachments

This commit is contained in:
Vijay Uppu
2023-11-30 19:26:00 -05:00
parent 42295d68df
commit 2604c6fd4a
6 changed files with 32 additions and 17 deletions

View File

@ -8,6 +8,7 @@ namespace DamageAssesment.Api.DocuLinks.Models
public string docName { get; set; }
public string Path { get; set; }
public bool IsAttachments { get; set; }
public string Language { get; set; }
public int CustomOrder { get; set; }
}
}

View File

@ -18,5 +18,6 @@ namespace DamageAssesment.Api.DocuLinks.Models
public int CustomOrder { get; set; }
public string url { get;set; }
public bool IsAttachments { get; set; }
public string Language { get; set; }
}
}