Skip to content

Commit 39c0abf

Browse files
committed
Use readonly collection
1 parent 10b60e2 commit 39c0abf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/LinkDotNet.Blog.Domain/BlogPost.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ private BlogPost()
2525

2626
public DateTime? ScheduledPublishDate { get; private set; }
2727

28-
public ICollection<string> Tags { get; private set; }
28+
public IReadOnlyCollection<string> Tags { get; private set; }
2929

3030
public bool IsPublished { get; private set; }
3131

0 commit comments

Comments
 (0)