16 lines
No EOL
285 B
C#
16 lines
No EOL
285 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ImageBoardServerApp.Data;
|
|
|
|
public class BoardData
|
|
{
|
|
public int BoardID { get; set; }
|
|
|
|
public string Tag { get; set; }
|
|
|
|
public string Topic { get; set; }
|
|
|
|
public int maxThreads { get; set; }
|
|
|
|
|
|
} |