Stock.cs 475 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace nukakto.Models
  4. {
  5. public partial class Stock
  6. {
  7. public int IdStock { get; set; }
  8. public byte[]? Icon { get; set; }
  9. public string? Comment { get; set; }
  10. public DateTime DateStart { get; set; }
  11. public DateTime DateEnd { get; set; }
  12. public int IdAttractions { get; set; }
  13. public virtual Attraction IdAttractionsNavigation { get; set; } = null!;
  14. }
  15. }