23 lines
533 B
C#
Raw Normal View History

2023-08-15 23:52:30 -04:00
using System.ComponentModel.DataAnnotations;
2023-10-04 18:45:51 -04:00
namespace DamageAssesment.Api.Responses.Models
2023-08-15 23:52:30 -04:00
{
public class Attachment
{
public int Id { get; set; }
public string URI { get; set; }
public int ResponseId { get; set; }
public int? AnswerId { get; set; }
public bool IsDeleted { get; set; }
public string FileName { get; set; }
2023-08-15 23:52:30 -04:00
public Attachment(int answerId, string uri)
{
this.AnswerId = answerId;
this.URI = uri;
}
}
}