SurveyVista/Model/QuestionTypeEntities.cs
2024-03-08 11:20:36 +01:00

17 lines
306 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class QuestionTypeEntities
{
public int Id { get; set; }
public QuestionType Type { get; set; }
}
}