Skip to content

Commit

Permalink
refactor: set access modifiers properly
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaVetnic committed Dec 30, 2024
1 parent 507825c commit 284c0b8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ private FileAssetId(Guid value) : base(value) { }

public static FileAssetId Of(Guid value) => new(value);

public class FileAssetIdJsonConverter : StronglyTypedIdJsonConverter<FileAssetId>;
private class FileAssetIdJsonConverter : StronglyTypedIdJsonConverter<FileAssetId>;
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ private NodeId(Guid value) : base(value) { }

public static NodeId Of(Guid value) => new(value);

public class NodeIdJsonConverter : StronglyTypedIdJsonConverter<NodeId>;
private class NodeIdJsonConverter : StronglyTypedIdJsonConverter<NodeId>;
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ private NoteId(Guid value) : base(value) { }

public static NoteId Of(Guid value) => new(value);

public class NoteIdJsonConverter : StronglyTypedIdJsonConverter<NoteId>;
private class NoteIdJsonConverter : StronglyTypedIdJsonConverter<NoteId>;
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ private ReminderId(Guid value) : base(value) { }

public static ReminderId Of(Guid value) => new(value);

public class ReminderIdJsonConverter : StronglyTypedIdJsonConverter<ReminderId>;
private class ReminderIdJsonConverter : StronglyTypedIdJsonConverter<ReminderId>;
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ private TimelineId(Guid value) : base(value) { }

public static TimelineId Of(Guid value) => new(value);

public class TimelineIdJsonConverter : StronglyTypedIdJsonConverter<TimelineId>;
private class TimelineIdJsonConverter : StronglyTypedIdJsonConverter<TimelineId>;
}

0 comments on commit 284c0b8

Please sign in to comment.