Commit bda0d321 authored by Barbora Horňáková's avatar Barbora Horňáková
Browse files

fix(db/category): suppress non-nullable warning

parent d6c2fa12
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3,6 +3,6 @@ namespace RandomRandeApp.Models;
public class Category
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Description { get; set; }
    public string Name { get; set; } = null!;
    public string Description { get; set; } = null!;
}
 No newline at end of file