1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- namespace nukakto.Models
- {
- public partial class Stock
- {
- public int IdStock { get; set; }
- public byte[]? Icon { get; set; }
- public string? Comment { get; set; }
- public DateTime DateStart { get; set; }
- public DateTime DateEnd { get; set; }
- public int IdAttractions { get; set; }
- public virtual Attraction IdAttractionsNavigation { get; set; } = null!;
- }
- }
|