2024-08-21 16:50:14 +08:00

12 lines
273 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ReportServerTempDB.Models
{
public partial class SessionLock
{
public string SessionId { get; set; } = null!;
public int LockVersion { get; set; }
}
}