DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Questions/Db/QuestionCategory.cs
2023-09-08 15:40:06 -04:00

15 lines
313 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 IconName { get; set; }
public string IconLibrary { get; set; }
}
}