DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.DocuLinks/Db/LinksTranslation.cs
2023-09-22 11:56:09 -04:00

16 lines
411 B
C#

using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace DamageAssesment.Api.DocuLinks.Db
{
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; }
}
}