ImGlyphDefProp.cs 352 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImGlyphDefProp
  6. {
  7. public int GlyphType { get; set; }
  8. public string GlyphName { get; set; } = null!;
  9. public double? Width { get; set; }
  10. public double? Height { get; set; }
  11. }
  12. }