Files
2023-02-22 11:08:17 +00:00

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;
}
}