Statistics
| Branch: | Revision:

root / trunk / Pithos.Core / FileState.cs @ b5061ac8

History | View | Annotate | Download (916 Bytes)

1
// -----------------------------------------------------------------------
2
// <copyright file="FileState.cs" company="Microsoft">
3
// TODO: Update copyright text.
4
// </copyright>
5
// -----------------------------------------------------------------------
6

    
7
using Castle.ActiveRecord;
8
using Castle.ActiveRecord.Framework;
9
using Pithos.Interfaces;
10

    
11
namespace Pithos.Core
12
{
13
    using System;
14
    using System.Collections.Generic;
15
    using System.Linq;
16
    using System.Text;
17

    
18
    /// <summary>
19
    /// TODO: Update summary.
20
    /// </summary>
21
    [ActiveRecord]
22
    public class FileState:ActiveRecordLinqBase<FileState>
23
    {
24
        [PrimaryKey]
25
        public string FilePath { get; set; }
26

    
27
        [Property]
28
        public FileOverlayStatus OverlayStatus { get; set; }
29

    
30
        [Property]
31
        public FileStatus FileStatus { get; set; }
32

    
33
        [Property]
34
        public string Checksum { get; set; }
35
    }
36
}