mirror of
https://github.com/AntonyCorbett/JWLMerge
synced 2026-07-31 16:15:48 -04:00
19 lines
435 B
C#
19 lines
435 B
C#
namespace JWLMerge.BackupFileServices.Models.DatabaseModels
|
|
{
|
|
using Newtonsoft.Json;
|
|
|
|
public class LastModified
|
|
{
|
|
/// <summary>
|
|
/// Time stamp when the database was last modified.
|
|
/// </summary>
|
|
[JsonProperty(PropertyName = "LastModified")]
|
|
public string TimeLastModified { get; set; }
|
|
|
|
public void Reset()
|
|
{
|
|
TimeLastModified = null;
|
|
}
|
|
}
|
|
}
|