2023-09-22 10:52:17 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.DocuLinks.Models
|
|
|
|
|
{
|
|
|
|
|
public class DoculinkAttachments
|
|
|
|
|
{
|
|
|
|
|
public string docName { get; set; }
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
public bool IsAttachments { get; set; }
|
2023-11-30 19:04:14 -05:00
|
|
|
|
public string Language { get; set; }
|
2023-09-22 10:52:17 -05:00
|
|
|
|
public int CustomOrder { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|