10 lines
235 B
C#
Raw Normal View History

2023-08-15 23:52:30 -04:00
namespace DamageAssesment.Api.Questions.Models
{
public class QuestionCategory
{
public int Id { get; set; }
public string CategoryName { get; set; }
public string CategoryImage { get; set; }
}
}