DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Questions/Db/CategoryTranslation.cs
2023-09-08 15:40:06 -04:00

16 lines
419 B
C#

using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace DamageAssesment.Api.Questions.Db
{
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; }
}
}