This commit is contained in:
2025-10-02 17:23:48 +02:00
parent 52066ccdc2
commit 165addd785
6 changed files with 6 additions and 6 deletions

View File

@@ -6,5 +6,5 @@ public class CreateShowDto
public string? Place { get; set; }
public string? Description { get; set; }
public string? PyrotechnicImplementationPlan { get; set; }
public DateOnly? Date { get; set; }
public DateTime? Date { get; set; }
}

View File

@@ -7,5 +7,5 @@ public class UpdateShowDto
public string? Place { get; set; }
public string? Description { get; set; }
public string? PyrotechnicImplementationPlan { get; set; }
public DateOnly? Date { get; set; }
public DateTime? Date { get; set; }
}

View File

@@ -7,5 +7,5 @@ public class ReadShowDto
public string? Place { get; set; }
public string? Description { get; set; }
public string? PyrotechnicImplementationPlan { get; set; }
public DateOnly? Date { get; set; }
public DateTime? Date { get; set; }
}

View File

@@ -8,7 +8,7 @@ public class CreateSoundDto
public string? Duration { get; set; }
public string? Kind { get; set; }
public string? Format { get; set; }
public string? CreationDate { get; set; }
public DateTime? CreationDate { get; set; }
public string? SoundCategoryId { get; set; }
}

View File

@@ -9,7 +9,7 @@ public class UpdateSoundDto
public string? Duration { get; set; }
public string? Kind { get; set; }
public string? Format { get; set; }
public string? CreationDate { get; set; }
public DateTime? CreationDate { get; set; }
public string? SoundCategoryId { get; set; }
}

View File

@@ -9,7 +9,7 @@ public class ReadSoundDto
public string? Duration { get; set; }
public string? Kind { get; set; }
public string? Format { get; set; }
public string? CreationDate { get; set; }
public DateTime? CreationDate { get; set; }
public string? SoundCategoryId { get; set; }
}