UserAttachment.cs 658 B

12345678910111213141516171819202122232425
  1. using MTWorkHR.Core.Entities.Base;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. using System.ComponentModel.DataAnnotations;
  4. namespace MTWorkHR.Identity.Entities
  5. {
  6. public class UserAttachment : AuditEntity
  7. {
  8. public string UserId { get; set; }
  9. [ForeignKey("UserId")]
  10. public ApplicationUser User { get; set; }
  11. public long AttachmentTypeId { get; set; }
  12. [ForeignKey("AttachmentTypeId")]
  13. public AttachmentType AttachmentType { get; set; }
  14. [MaxLength(250)]
  15. public string FileName { get; set; }
  16. [MaxLength(250)]
  17. public string OriginalName { get; set; }
  18. }
  19. }