9 lines
188 B
C#
9 lines
188 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
public class SuggestionHelper
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
public string? Title { get; set; }
|
|
public string? Description { get; set; }
|
|
} |