using Microsoft.EntityFrameworkCore;

public class SuggestionHelper
{

    public int Id { get; set; }
    public string? Title { get; set; }
    public string? Description { get; set; }
}