Files
mixtape/zero.Core/Spaces/SpaceStore.cs
T

15 lines
220 B
C#
Raw Normal View History

2021-11-26 11:21:49 +01:00
namespace zero.Spaces;
public class SpaceStore : EntityStore<Space>, ISpaceStore
{
2021-12-02 13:43:04 +01:00
public SpaceStore(IStoreContext context) : base(context)
2021-11-26 11:21:49 +01:00
{
2021-12-02 13:43:04 +01:00
2021-11-26 11:21:49 +01:00
}
}
public interface ISpaceStore : IEntityStore<Space>
{
2021-12-02 13:43:04 +01:00
2021-11-26 11:21:49 +01:00
}