ln.bson/ln.bson.tests/Document.cs

22 lines
669 B
C#

using System;
using System.Collections.Generic;
namespace ln.bson.tests
{
public class Document
{
public Guid UniqueId { get; set; }
public string Title { get; set; }
public string FileName { get; set; }
public string Description { get; set; }
public Guid FolderId { get; set; }
public DateTime Created { get; set; }
public string ContentType { get; set; }
public Dictionary<string, DocumentContent> DocumentContents { get; set; } = new Dictionary<string, DocumentContent>();
public Dictionary<string, string> Keywords { get; set; } = new Dictionary<string, string>();
}
}