a2171e643d
- FTP - Gomba - Icoel - MultiCcn - OSAI - SqlDB
27 lines
695 B
C#
27 lines
695 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwProxy.SqlDb.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[Table("SyncState")]
|
|
public partial class SyncStateModel
|
|
{
|
|
[Key, StringLength(250)]
|
|
public string TableName { get; set; } = "";
|
|
|
|
public long LastIdx { get; set; } = 0;
|
|
|
|
public string Note { get; set; } = "";
|
|
|
|
public DateTime LastUpdate { get; set; } = DateTime.Today;
|
|
}
|
|
}
|