7 lines
185 B
C#
7 lines
185 B
C#
namespace Pushy.Domain;
|
|
|
|
public interface ILinkGenerator : IGrainWithGuidKey
|
|
{
|
|
[Alias("GenerateLink")]
|
|
public ValueTask<LinkResult> GenerateTextShare([Immutable] string text);
|
|
} |