9 lines
215 B
C#
9 lines
215 B
C#
namespace CouchLog.Data
|
|
{
|
|
public class CouchLogState
|
|
{
|
|
public int Id { get; set; }
|
|
public bool IsInitialized { get; set; }
|
|
public DateTime? InitializationDate { get; set; }
|
|
}
|
|
} |