15 lines
319 B
C#
15 lines
319 B
C#
|
using System.Buffers.Text;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace DamageAssesment.Api.Questions.Db
|
|||
|
{
|
|||
|
public class QuestionCategory
|
|||
|
{
|
|||
|
[Key]
|
|||
|
public int Id { get; set; }
|
|||
|
public string CategoryName { get; set; }
|
|||
|
public string CategoryImage { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|