dashboard
repositories
filestore
activity
search
login
原宏 葉
/
tpc/cmcs/MailQuery
提供客服信件查詢用API
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
補登
yuanhung
2024-02-05
876ccb53468872e1156a9f93d4cb72af7fb49c8e
[~yuanhung/tpc/cmcs/MailQuery.git]
/
MailQuery
/
Areas
/
HelpPage
/
Views
/
Help
/
DisplayTemplates
/
InvalidSample.cshtml
1
2
3
4
5
6
7
8
9
10
11
12
13
@using MailQuery.Areas.HelpPage
@model InvalidSample
@if (HttpContext.Current.IsDebuggingEnabled)
{
<div class="warning-message-container">
<p>@Model.ErrorMessage</p>
</div>
}
else
{
<p>Sample not available.</p>
}