2023-09-22 10:52:17 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.DocuLinks.Models
|
|
|
|
|
{
|
|
|
|
|
public class ReqDoculink
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public int linkTypeId { get; set; }
|
|
|
|
|
public List<DoculinkTranslation> documentsTranslations { get; set; }
|
2023-12-04 09:52:05 -05:00
|
|
|
|
public bool IsActive { get; set; }
|
2023-09-22 10:52:17 -05:00
|
|
|
|
public int CustomOrder { get; set; }
|
|
|
|
|
public List<FileModel>? Files { get; set; }
|
|
|
|
|
}
|
|
|
|
|
public class FileModel
|
|
|
|
|
{
|
|
|
|
|
public string? FileName { get; set; }
|
|
|
|
|
public string? FileContent { get; set; }
|
|
|
|
|
public string? FileExtension { get; set; }
|
|
|
|
|
public int CustomOrder { get; set; }
|
|
|
|
|
public string url { 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
|
|
|
|
}
|
|
|
|
|
}
|