TbDframeRevision.cs 262 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class TbDframeRevision
  6. {
  7. public DateTime OccurTime { get; set; }
  8. public string? Content { get; set; }
  9. }
  10. }