diff --git a/src/LinkMe/LinkMe.Api/LinkMe.Api.http b/src/LinkMe/LinkMe.Api/LinkMe.Api.http index 1a806df..d50e818 100644 --- a/src/LinkMe/LinkMe.Api/LinkMe.Api.http +++ b/src/LinkMe/LinkMe.Api/LinkMe.Api.http @@ -1,6 +1,6 @@ @LinkMe.Api_HostAddress = http://localhost:5143 -GET {{LinkMe.Api_HostAddress}}/weatherforecast/ +GET {{LinkMe.Api_HostAddress}}/communities/ Accept: application/json ### diff --git a/src/LinkMe/RegisterCommunity.cs b/src/LinkMe/RegisterCommunity.cs deleted file mode 100644 index 8510ba6..0000000 --- a/src/LinkMe/RegisterCommunity.cs +++ /dev/null @@ -1,27 +0,0 @@ -using System; - -public class RegisterCommunity -{ - public record RegisterCommunityCommand(string Name, int level ):IRequest - - { - public string Name { get; set; }=string.Empty; - public int Level { get; set; } - - - } - - public class RegisterCommunityHandler:IRequestHandler - - { - - - - } - - public RegisterCommunity() - { - - } - -}