2023-08-15 22:52:30 -05:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.Questions.Db
|
|
|
|
|
{
|
2023-10-12 15:01:24 -05:00
|
|
|
|
[Table("QuestionTrans")]
|
2023-08-15 22:52:30 -05:00
|
|
|
|
public class QuestionsTranslation
|
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[ForeignKey("Question")]
|
|
|
|
|
public int QuestionId { get; set; }
|
|
|
|
|
public string QuestionText { get; set; }
|
|
|
|
|
public string Language { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|