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

15 lines
313 B
C#
Raw Permalink Normal View History

2023-08-15 22:52:30 -05:00
using System.Buffers.Text;
using System.ComponentModel.DataAnnotations;
namespace DamageAssesment.Api.Questions.Db
{
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
}
}