PalacePal/Pal.Client/Database/ImportHistory.cs

16 lines
398 B
C#
Raw Normal View History

2023-02-16 18:51:54 +00:00
using System;
2023-02-17 17:36:22 +00:00
using System.Collections.Generic;
2023-02-16 18:51:54 +00:00
namespace Pal.Client.Database
{
internal sealed class ImportHistory
{
public Guid Id { get; set; }
public string? RemoteUrl { get; set; }
public DateTime ExportedAt { get; set; }
public DateTime ImportedAt { get; set; }
2023-02-17 17:36:22 +00:00
public List<ClientLocation> ImportedLocations { get; set; } = new();
2023-02-16 18:51:54 +00:00
}
}