17 lines
399 B
C#
17 lines
399 B
C#
using System.Buffers.Text;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace DamageAssesment.Api.Questions.Db
|
|
{
|
|
[Table("QuestionCategories")]
|
|
public class QuestionCategory
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public string IconName { get; set; }
|
|
public string IconLibrary { get; set; }
|
|
|
|
}
|
|
}
|