🐛fix:修复app层注释失效

This commit is contained in:
yubaolee
2025-08-30 19:01:06 +08:00
parent e3f6374ac1
commit 6f0c09d8d5
2 changed files with 11 additions and 1 deletions

View File

@@ -5,10 +5,14 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\net5.0\OpenAuth.App.xml</DocumentationFile> <DocumentationFile>bin\Debug\net9.0\OpenAuth.App.xml</DocumentationFile>
<NoWarn>1701;1702;1591;1573;1572;1570</NoWarn> <NoWarn>1701;1702;1591;1573;1572;1570</NoWarn>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DocumentationFile>bin\Release\net9.0\OpenAuth.App.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup> <ItemGroup>
<Compile Remove="Model\**" /> <Compile Remove="Model\**" />
<EmbeddedResource Remove="Model\**" /> <EmbeddedResource Remove="Model\**" />

View File

@@ -5,9 +5,15 @@ namespace OpenAuth.App.SSO
public class PassportLoginRequest public class PassportLoginRequest
{ {
/// <summary>
/// 登录账号
/// </summary>
/// <example>System</example> /// <example>System</example>
public string Account { get; set; } public string Account { get; set; }
/// <summary>
/// 登录密码
/// </summary>
/// <example>123456</example> /// <example>123456</example>
public string Password { get; set; } public string Password { get; set; }