25 lines
828 B
C#
25 lines
828 B
C#
using CPRNIMS.Infrastructure.Entities.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Account
|
|
{
|
|
[Table("Attachments")]
|
|
public class Attachment : CommonProperties
|
|
{
|
|
public int Id { get; set; }
|
|
public string? AttachmentId { get; set; }
|
|
public string? URL { get; set; }
|
|
public string? FileName { get; set; }
|
|
public int? ExtensionId { get; set; }
|
|
public int? AttachmentTypeId { get; set; }
|
|
public AttachmentExtension? AttachmentExtention { get; set; }
|
|
public AttachmentFileType? AttachmentFileType { get; set; }
|
|
public ApplicationUser? ApplicationUser { get; set; }
|
|
}
|
|
}
|