Skip to content

Commit d9a5fd7

Browse files
committed
Updated Asp.Net Core Web API
1 parent d7fe7d6 commit d9a5fd7

File tree

188 files changed

+62655
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

188 files changed

+62655
-0
lines changed
Binary file not shown.
Binary file not shown.

WebAPI/CommonCoreAPI/.vs/CommonCoreAPI/v15/Server/sqlite3/db.lock

Whitespace-only changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.

WebAPI/CommonCoreAPI/.vs/config/applicationhost.config

Lines changed: 985 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp2.2</TargetFramework>
5+
</PropertyGroup>
6+
7+
</Project>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Text;
4+
5+
namespace CommonCore.Domain
6+
{
7+
public class Login
8+
{
9+
public string Email { get; set; }
10+
public string Password { get; set; }
11+
}
12+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Text;
4+
5+
namespace CommonCore.Domain
6+
{
7+
public class LoginResult
8+
{
9+
public bool Success { get;set;}
10+
public string Message { get; set; }
11+
public string Token { get; set; }
12+
}
13+
}

0 commit comments

Comments
 (0)