12 lines
273 B
C#
Raw Normal View History

2024-08-21 16:50:14 +08:00
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; }
}
}