bulletboards/ImageBoardServerApp/Data/BoardData.cs

16 lines
285 B
C#
Raw Normal View History

2023-01-18 12:56:24 +00:00
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; }
}