2023-09-22 10:52:17 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.DocuLinks.Db
|
|
|
|
|
{
|
2023-10-12 15:01:24 -05:00
|
|
|
|
[Table("DoculinkAttachments")]
|
2023-09-22 10:52:17 -05:00
|
|
|
|
public class DoculinkAttachments
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[Key]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[ForeignKey("Document")]
|
|
|
|
|
public int DocumentId { get; set; }
|
|
|
|
|
public string docName { get; set; }
|
|
|
|
|
public string Path { get; set; }
|
|
|
|
|
public bool IsAttachments { get; set; }
|
|
|
|
|
public int CustomOrder { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|