12 lines
273 B
C#
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; }
|
|||
|
}
|
|||
|
}
|