16 lines
285 B
C#
16 lines
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; }
|
||
|
|
||
|
|
||
|
}
|