ImLabel.cs 672 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImLabel
  6. {
  7. public string Id { get; set; } = null!;
  8. public short? FCharSet { get; set; }
  9. public int? FColor { get; set; }
  10. public string? FName { get; set; }
  11. public short? FSize { get; set; }
  12. public short? FBold { get; set; }
  13. public short? FItalic { get; set; }
  14. public short? FStrikeout { get; set; }
  15. public short? FUnderLine { get; set; }
  16. public string? Caption { get; set; }
  17. public virtual ImGlyph IdNavigation { get; set; } = null!;
  18. }
  19. }