mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-01 02:52:56 +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; }
|
|
}
|