@@ -138,58 +138,62 @@ public static class CollectionNsid
138138 /// <summary>
139139 /// The NSID for a user's post collection.
140140 /// </summary>
141- public static Nsid Post { get ; } = new Nsid ( "app.bsky.feed.post" ) ;
141+ public static Nsid Post => new ( "app.bsky.feed.post" ) ;
142142
143143 /// <summary>
144144 /// The NSID for a user's likes collection.
145145 /// </summary>
146- public static Nsid Like { get ; } = new Nsid ( "app.bsky.feed.like" ) ;
146+ public static Nsid Like => new ( "app.bsky.feed.like" ) ;
147147
148148 /// <summary>
149149 /// The NSID for a user's reposts collection.
150150 /// </summary>
151- public static Nsid Repost { get ; } = new Nsid ( "app.bsky.feed.repost" ) ;
151+ public static Nsid Repost => new ( "app.bsky.feed.repost" ) ;
152152
153153 /// <summary>
154154 /// The NSID for a user's follows collection.
155155 /// </summary>
156- public static Nsid Follow { get ; } = new Nsid ( "app.bsky.graph.follow" ) ;
156+ public static Nsid Follow => new ( "app.bsky.graph.follow" ) ;
157157
158158 /// <summary>
159159 /// The NSID for a user's block collection.
160160 /// </summary>
161- public static Nsid Block { get ; } = new Nsid ( "app.bsky.graph.block" ) ;
161+ public static Nsid Block => new ( "app.bsky.graph.block" ) ;
162162
163163 /// <summary>
164164 /// The NSID for a user's thread gates collection.
165165 /// </summary>
166- public static Nsid ThreadGate { get ; } = new Nsid ( "app.bsky.feed.threadgate" ) ;
166+ public static Nsid ThreadGate => new ( "app.bsky.feed.threadgate" ) ;
167167
168168 /// <summary>
169169 /// The NSID for a user's post gates collection.
170170 /// </summary>
171- public static Nsid PostGate { get ; } = new Nsid ( "app.bsky.feed.postgate" ) ;
171+ public static Nsid PostGate => new ( "app.bsky.feed.postgate" ) ;
172172
173173 /// <summary>
174174 /// The NSID for an actor's profile.
175175 /// </summary>
176- public static Nsid Profile { get ; } = new Nsid ( "app.bsky.actor.profile" ) ;
176+ public static Nsid Profile => new ( "app.bsky.actor.profile" ) ;
177177
178178 /// <summary>
179179 /// The NSID for a user's verification collection.
180180 /// </summary>
181- public static Nsid Verification { get ; } = new Nsid ( "app.bsky.graph.verification" ) ;
181+ public static Nsid Verification => new ( "app.bsky.graph.verification" ) ;
182182
183183 /// <summary>
184184 /// The NSID for a user's list collection.
185185 /// </summary>
186- public static Nsid List { get ; } = new Nsid ( "app.bsky.graph.list" ) ;
186+ public static Nsid List => new ( "app.bsky.graph.list" ) ;
187187
188188 /// <summary>
189189 /// The NSID for the user's collection of users added to their own lists.
190190 /// </summary>
191- public static Nsid ListItem { get ; } = new Nsid ( "app.bsky.graph.listitem" ) ;
191+ public static Nsid ListItem => new ( "app.bsky.graph.listitem" ) ;
192192
193+ /// <summary>
194+ /// The NSID for an actor's status record.
195+ /// </summary>
196+ public static Nsid Status => new ( "app.bsky.actor.status" ) ;
193197 }
194198
195199 /// <summary>
0 commit comments