bulletboards/ImageBoardServerApp/Pages/B.razor

16 lines
273 B
Text
Raw Normal View History

2023-01-18 12:56:24 +00:00
@page "/b/"
@using System.ComponentModel.DataAnnotations
@using ImageBoardServerApp.Data
<Board board="@b"/>
@code {
private BoardData b { get; set; } = new()
{
BoardID = 0,
maxThreads = 10,
Tag = "b",
Topic = "Random"
};
}