ImAbnormalYxcount.cs 327 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_Data.Models
  4. {
  5. public partial class ImAbnormalYxcount
  6. {
  7. public string DeviceId { get; set; } = null!;
  8. public int UnconfirmedCount { get; set; }
  9. public string? LastConfirmTime { get; set; }
  10. }
  11. }