14 lines
379 B
C#
14 lines
379 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DamageAssesment.Api.DocuLinks.Models
|
|
{
|
|
public class DoculinkAttachments
|
|
{
|
|
public string docName { get; set; }
|
|
public string Path { get; set; }
|
|
public bool IsAttachments { get; set; }
|
|
public int CustomOrder { get; set; }
|
|
}
|
|
}
|