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 documentsTranslations { get; set; } public int CustomOrder { get; set; } public List? 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; } } }