17 lines
444 B
C#
Raw Normal View History

2023-09-22 11:52:17 -04:00
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace DamageAssesment.Api.DocuLinks.Db
{
2023-10-12 16:01:24 -04:00
[Table("DoculinkTypeTrans")]
2023-09-22 11:52:17 -04: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; }
}
}