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