PalacePal/Pal.Client/Database/ImportHistory.cs

15 lines
364 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
2023-03-30 20:01:43 +00:00
namespace Pal.Client.Database;
internal sealed class ImportHistory
2023-02-16 18:51:54 +00:00
{
2023-03-30 20:01:43 +00:00
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
2023-03-30 20:01:43 +00:00
public List<ClientLocation> ImportedLocations { get; set; } = new();
2023-02-16 18:51:54 +00:00
}