fix DTO
This commit is contained in:
@@ -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; }
|
||||
}
|
@@ -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; }
|
||||
}
|
@@ -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; }
|
||||
}
|
@@ -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; }
|
||||
|
||||
}
|
@@ -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; }
|
||||
|
||||
}
|
@@ -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; }
|
||||
|
||||
}
|
Reference in New Issue
Block a user