11 lines
340 B
C#
11 lines
340 B
C#
namespace Model;
|
|
|
|
public class GameDoc
|
|
{
|
|
public string Title { get; set; } = string.Empty;
|
|
public string Category { get; set; } = string.Empty;
|
|
public string? Link { get; set; }
|
|
public string? Git { get; set; }
|
|
public string ContentHtml { get; set; } = string.Empty;
|
|
public bool? IsVisible { get; set; } = true;
|
|
} |