17 lines
399 B
C#
Raw Normal View History

2023-08-15 23:52:30 -04:00
using System.Buffers.Text;
using System.ComponentModel.DataAnnotations;
2023-10-12 16:01:24 -04:00
using System.ComponentModel.DataAnnotations.Schema;
2023-08-15 23:52:30 -04:00
namespace DamageAssesment.Api.Questions.Db
{
2023-10-12 16:01:24 -04:00
[Table("QuestionCategories")]
2023-08-15 23:52:30 -04:00
public class QuestionCategory
{
[Key]
public int Id { get; set; }
2023-09-08 15:40:06 -04:00
public string IconName { get; set; }
public string IconLibrary { get; set; }
2023-08-15 23:52:30 -04:00
}
}