DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Questions/Db/CategoryTranslation.cs
2023-10-12 16:01:24 -04:00

17 lines
456 B
C#

using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace DamageAssesment.Api.Questions.Db
{
[Table("QuestionCategoryTrans")]
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; }
}
}