8 lines
No EOL
171 B
C#
8 lines
No EOL
171 B
C#
namespace SurveyLib.Core.Models;
|
|
|
|
public class Survey
|
|
{
|
|
public int Id { get; set; }
|
|
public string Title { get; set; }
|
|
public string Description { get; set; }
|
|
} |