9 lines
190 B
C#
Raw Normal View History

2023-09-08 15:40:06 -04:00
namespace DamageAssesment.Api.Questions.Models
{
public class CategoryTranslation
{
public string Title { get; set; }
public string Language { get; set; }
}
}