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; } } }