15 lines
313 B
C#
Raw Normal View History

2023-08-15 23:52:30 -04: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 15:40:06 -04:00
public string IconName { get; set; }
public string IconLibrary { get; set; }
2023-08-15 23:52:30 -04:00
}
}