2025-08-08 16:59:29 -05:00
|
|
|
namespace FreeTubeSync.Model;
|
2025-07-31 12:57:47 -05:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|