SessionLock.cs 273 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ReportServerTempDB.Models
  4. {
  5. public partial class SessionLock
  6. {
  7. public string SessionId { get; set; } = null!;
  8. public int LockVersion { get; set; }
  9. }
  10. }