16 lines
411 B
C#
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; }
|
|||
|
}
|
|||
|
}
|