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