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

12 lines
198 B
C#
Raw Normal View History

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