13 lines
221 B
C#
13 lines
221 B
C#
using System;
|
|
|
|
namespace CoreUnitTests.Infrastructure.Model;
|
|
|
|
public class TestProjection
|
|
{
|
|
public Guid TestDocumentId { get; set; }
|
|
|
|
public DateTime NestedData { get; set; }
|
|
|
|
public int Count { get; set; }
|
|
}
|