12 lines
289 B
C#
12 lines
289 B
C#
using Core.Blueprint.Mongo;
|
|
|
|
namespace Core.Blueprint.DAL.Mongo.Entities.Collections
|
|
{
|
|
[CollectionAttributeName("Samples")]
|
|
public class SampleCollection : Document
|
|
{
|
|
public string Name { get; set; } = null!;
|
|
public string? Description { get; set; }
|
|
}
|
|
}
|