17 lines
347 B
C#
17 lines
347 B
C#
|
using ForumDataModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ForumContracts.BindingModels
|
|||
|
{
|
|||
|
public class CategoryBindingModel : ICategoryModel
|
|||
|
{
|
|||
|
public string Name { get; set; } = string.Empty;
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
}
|
|||
|
}
|