Projekt

Obecné

Profil

Stáhnout (437 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
        /// <summary>
14
        /// String with the document content
15
        /// </summary>
16
        public string Content { get; set; }
17
    }
18
}
(8-8/14)