2023-08-31 18:00:51 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
2023-09-22 10:52:17 -05:00
|
|
|
|
namespace DamageAssesment.Api.DocuLinks.Db
|
2023-08-31 18:00:51 -05:00
|
|
|
|
{
|
2023-09-22 10:52:17 -05:00
|
|
|
|
public class DoculinkTranslation
|
2023-08-31 18:00:51 -05:00
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[ForeignKey("Document")]
|
|
|
|
|
public int DocumentId { get; set; }
|
|
|
|
|
public string title { get; set; }
|
|
|
|
|
public string description { get; set; }
|
|
|
|
|
public string Language { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|