16 lines
419 B
C#
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; }
|
|
}
|
|
}
|