20 lines
474 B
C#
20 lines
474 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LSFE.Infrastructure.Entities
|
|
{
|
|
[Table("Attachments")]
|
|
public class Attachment
|
|
{
|
|
[Key]
|
|
public int AttachmentId { get; set; }
|
|
public string? URL { get; set; }
|
|
public string? FileName { get; set; }
|
|
}
|
|
}
|