Working full stack forums get
This commit is contained in:
15
BL/DTOs/FoorumDTO.cs
Normal file
15
BL/DTOs/FoorumDTO.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BL.DTOs
|
||||
{
|
||||
public class FoorumDTO
|
||||
{
|
||||
public int FoorumId { get; set; }
|
||||
public string Title { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
15
BL/DTOs/PostDTO.cs
Normal file
15
BL/DTOs/PostDTO.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BL.DTOs
|
||||
{
|
||||
public class PostDTO
|
||||
{
|
||||
public int PostId { get; set; }
|
||||
public string Title { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user