2023-08-31 18:00:51 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
2023-09-22 10:52:17 -05:00
|
|
|
|
namespace DamageAssesment.Api.DocuLinks.Db
|
2023-08-31 18:00:51 -05:00
|
|
|
|
{
|
2023-09-22 10:52:17 -05:00
|
|
|
|
public class Doculink
|
2023-08-31 18:00:51 -05:00
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[ForeignKey("LinkType")]
|
|
|
|
|
public int linkTypeId { get; set; }
|
|
|
|
|
public bool IsActive { get; set; }
|
2023-09-22 10:52:17 -05:00
|
|
|
|
public bool IsDeleted { get; set; }
|
|
|
|
|
public int CustomOrder { get; set; }
|
|
|
|
|
//public bool IsAttachments { get; set; }
|
|
|
|
|
//public bool IsUrl { get; set; }
|
2023-08-31 18:00:51 -05:00
|
|
|
|
public DateTime dateCreated { get; set; }
|
|
|
|
|
public DateTime dateUpdated { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|