added multi language support for doculink attachments

This commit is contained in:
Vijay Uppu
2023-11-30 20:00:09 -05:00
parent 4885311290
commit 48af2f3623
7 changed files with 68 additions and 85 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

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