DocSpace-client/common/services/ASC.ElasticSearch/Core/State.cs

13 lines
235 B
C#
Raw Normal View History

2020-01-24 13:07:51 +00:00
using System;
using System.Runtime.Serialization;
namespace ASC.ElasticSearch.Core
{
public class State
{
public string Indexing { get; set; }
public DateTime? LastIndexed { get; set; }
}
}