Initial split migration

This commit is contained in:
henrik
2024-12-13 18:04:00 +01:00
parent b4b96b3f4e
commit 2525790303
23 changed files with 281 additions and 277 deletions

14
Pushy.Domain/ITextItem.cs Normal file
View File

@@ -0,0 +1,14 @@
using Orleans.Concurrency;
namespace Pushy.Domain;
public interface ITextItem : IGrainWithStringKey
{
[Alias("SetText")]
public ValueTask<TextSetResult> SetText(string text);
[ReadOnly]
[return: Immutable]
[Alias("GetText")]
ValueTask<string> GetText();
}