2023-09-08 15:40:06 -04:00
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace DamageAssesment.Api.Questions.Db
|
|
|
|
|
{
|
2023-10-12 16:01:24 -04:00
|
|
|
|
[Table("QuestionCategoryTrans")]
|
2023-09-08 15:40:06 -04:00
|
|
|
|
public class CategoryTranslation
|
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
[ForeignKey("QuestionCategory")]
|
|
|
|
|
public int CategoryId { get; set; }
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
public string Language { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|