2023-09-22 10:52:17 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.DocuLinks.Db
|
|
|
|
|
{
|
2023-10-12 15:01:24 -05:00
|
|
|
|
[Table("DoculinkTypeTrans")]
|
2023-09-22 10:52:17 -05:00
|
|
|
|
public class LinksTranslation
|
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[ForeignKey("LinkType")]
|
|
|
|
|
public int LinkTypeId { get; set; }
|
|
|
|
|
public string TypeText { get; set; }
|
|
|
|
|
public string Language { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|