Added change log to track updates to the database, for easier pinging from Syncer client.
9 lines
No EOL
281 B
C#
9 lines
No EOL
281 B
C#
namespace FreeTubeSync.Model.Database;
|
|
|
|
public class ChangeLog
|
|
{
|
|
public int Id { get; set; }
|
|
public string TableName { get; set; } = string.Empty;
|
|
public string ChangeType { get; set; } = string.Empty;
|
|
public DateTime ChangeTime { get; set; } = DateTime.MinValue;
|
|
} |