17 lines
460 B
C#
17 lines
460 B
C#
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
|
|||
|
namespace DamageAssesment.Api.Documents.Db
|
|||
|
{
|
|||
|
public class DocumentsTranslation
|
|||
|
{
|
|||
|
[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; }
|
|||
|
}
|
|||
|
}
|