mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-05 05:23:57 +00:00
9 lines
176 B
C#
9 lines
176 B
C#
using System;
|
|
|
|
namespace CleanArchitecture.IntegrationTests.Fixtures;
|
|
|
|
public sealed class UserTestFixture : TestFixtureBase
|
|
{
|
|
public Guid CreatedUserId { get; set; }
|
|
}
|