Initial commit, project structure and domain models
This commit is contained in:
0
src/api/MicCheck.Api/Environments/.gitkeep
Normal file
0
src/api/MicCheck.Api/Environments/.gitkeep
Normal file
13
src/api/MicCheck.Api/Environments/Environment.cs
Normal file
13
src/api/MicCheck.Api/Environments/Environment.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using MicCheck.Api.Features;
|
||||
|
||||
namespace MicCheck.Api.Environments;
|
||||
|
||||
public class Environment
|
||||
{
|
||||
public int Id { get; init; }
|
||||
public required string Name { get; set; }
|
||||
public required string ApiKey { get; set; }
|
||||
public int ProjectId { get; init; }
|
||||
public DateTimeOffset CreatedAt { get; init; }
|
||||
public ICollection<FeatureState> FeatureStates { get; init; } = [];
|
||||
}
|
||||
Reference in New Issue
Block a user