10 lines
204 B
C#
10 lines
204 B
C#
using Aegis.Domain;
|
|
|
|
namespace Aegis.Application.DataStores.ListDataStores;
|
|
|
|
public sealed record DataStoreSummary(
|
|
DataStoreId DataStoreId,
|
|
string Name,
|
|
DataStoreRole Role,
|
|
bool Locked
|
|
); |