17 lines
459 B
C#
17 lines
459 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace DamageAssesment.Api.DocuLinks.Db
|
|
{
|
|
public class DoculinkTranslation
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
[ForeignKey("Document")]
|
|
public int DocumentId { get; set; }
|
|
public string title { get; set; }
|
|
public string description { get; set; }
|
|
public string Language { get; set; }
|
|
}
|
|
}
|