DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.DocuLinks/Db/LinksTranslation.cs
2023-10-12 16:01:24 -04:00

17 lines
444 B
C#

using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace DamageAssesment.Api.DocuLinks.Db
{
[Table("DoculinkTypeTrans")]
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; }
}
}