source: src/FinkiChattery/FinkiChattery.Persistence/Models/Category.cs@ e6a6d9a

dev
Last change on this file since e6a6d9a was e6a6d9a, checked in by Стојков Марко <mst@…>, 3 years ago

Initialized FinkiChattery project

  • Property mode set to 100644
File size: 259 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace FinkiChattery.Persistence.Models
8{
9 public class Category : BaseEntity
10 {
11 public string Name { get; set; }
12 }
13}
Note: See TracBrowser for help on using the repository browser.