CmSunriseSunset.cs 622 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace FMSAdmin.Entities
  6. {
  7. public partial class CmSunriseSunset
  8. {
  9. [Column(TypeName = "date")]
  10. public DateTime Date { get; set; }
  11. [StringLength(50)]
  12. public string SunriseTime { get; set; }
  13. [StringLength(50)]
  14. public string SunsetTime { get; set; }
  15. [StringLength(50)]
  16. public string TwilightDawnTime { get; set; }
  17. [StringLength(50)]
  18. public string TwilightDuskTime { get; set; }
  19. }
  20. }