forked from MDCPS/DamageAssessment_Backend
Copy from old Repository
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace DamageAssesment.Api.Questions.Db
|
||||
{
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user