Skip to content
Snippets Groups Projects
AnswerOptionDetailDto.cs 237 B
Newer Older
using System;
using System.Collections.Generic;
using System.Text;

namespace Tsi1.BusinessLayer.Dtos
{
    public class AnswerOptionDetailDto
    {
        public int Id { get; set; }
        public string Name { get; set; }
    }
}