DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Questions/Db/QuestionCategory.cs

17 lines
399 B
C#
Raw Permalink Normal View History

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