Skip to content

Commit

Permalink
Revert "chore: fix line endings"
Browse files Browse the repository at this point in the history
This reverts commit bb37bce.
  • Loading branch information
HunorTotBagi committed Feb 12, 2025
1 parent bb37bce commit c7c81f6
Showing 1 changed file with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
using System.Text.Json.Serialization;
using BuildingBlocks.Domain.Notes.Note.Dtos;
using BuildingBlocks.Domain.Reminders.Reminder.Dtos;

namespace BuildingBlocks.Domain.Nodes.Node.Dtos;

public class NodeDto(
string? id,
string title,
string description,
DateTime timestamp,
int importance,
string phase,
List<string> categories,
List<string> tags) : NodeBaseDto(id, title, description, timestamp, importance, phase, categories, tags)
{
using System.Text.Json.Serialization;
using BuildingBlocks.Domain.Notes.Note.Dtos;
using BuildingBlocks.Domain.Reminders.Reminder.Dtos;

namespace BuildingBlocks.Domain.Nodes.Node.Dtos;

public class NodeDto(
string? id,
string title,
string description,
DateTime timestamp,
int importance,
string phase,
List<string> categories,
List<string> tags) : NodeBaseDto(id, title, description, timestamp, importance, phase, categories, tags)
{
[JsonPropertyName("reminders")] public List<ReminderBaseDto> Reminders { get; } = [];

[JsonPropertyName("notes")] public List<NoteBaseDto> Notes { get; } = [];
}

[JsonPropertyName("notes")] public List<NoteBaseDto> Notes { get; } = [];
}

0 comments on commit c7c81f6

Please sign in to comment.