| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.ComponentModel.DataAnnotations; |
| | | 4 | | using System.Linq; |
| | | 5 | | using System.Threading.Tasks; |
| | | 6 | | |
| | | 7 | | namespace MUNity.Database.Models.Simulation; |
| | | 8 | | |
| | | 9 | | public class SimulationLog |
| | | 10 | | { |
| | 0 | 11 | | public int SimulationLogId { get; set; } |
| | | 12 | | |
| | 0 | 13 | | public Simulation Simulation { get; set; } |
| | | 14 | | |
| | | 15 | | [MaxLength(250)] |
| | 0 | 16 | | public string CategoryName { get; set; } |
| | | 17 | | |
| | | 18 | | [MaxLength(250)] |
| | 0 | 19 | | public string Name { get; set; } |
| | | 20 | | |
| | | 21 | | [MaxLength(2000)] |
| | 0 | 22 | | public string Text { get; set; } |
| | | 23 | | |
| | 0 | 24 | | public DateTime Timestamp { get; set; } |
| | | 25 | | } |