22 lines
638 B
C#
Raw Normal View History

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