mirror of
https://github.com/AntonyCorbett/JWLMerge
synced 2026-07-14 07:01:47 -04:00
17 lines
381 B
C#
17 lines
381 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace JWLMerge.BackupFileServices.Models.DatabaseModels;
|
|
|
|
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;
|
|
}
|
|
} |