Files
2023-07-01 22:27:11 +01:00

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; }
}