Projekt

Obecné

Profil

Stáhnout (347 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using System;
2
using System.Collections.Generic;
3
using System.ComponentModel.DataAnnotations;
4
using System.ComponentModel.DataAnnotations.Schema;
5
using System.Linq;
6
using System.Text;
7
using System.Threading.Tasks;
8

    
9
namespace Core.Entities
10
{
11
    public class DocumentContent : BaseEntity
12
    {
13
        public string Content { get; set; }
14
    }
15
}
(8-8/12)