Files
Disco/Disco.Web/Areas/API/Models/DocumentTemplate/ImporterUndetectedFilesModel.cs
T
Gary Sharp 7bdbeb6a82 Feature #35: Livestamp implemented
Humanized dates now update automatically when a page is left open for
some time.
2014-02-11 16:50:03 +11:00

14 lines
341 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Disco.Web.Areas.API.Models.DocumentTemplate
{
public class ImporterUndetectedFilesModel
{
public string Id { get; set; }
public string Timestamp { get; set; }
public long TimestampUnixEpoc { get; set; }
}
}