Working full stack forums get

This commit is contained in:
2017-06-12 13:37:48 +03:00
parent b4d10b7bff
commit aeb18aa75b
23 changed files with 484 additions and 15 deletions

15
BL/DTOs/FoorumDTO.cs Normal file
View 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
View 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; }
}
}