• R/O
  • HTTP
  • SSH
  • HTTPS

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

なろうブックマーク分析用ツールのPrism+WinUI3サンプル実装


File Info

修訂. 91b05482e5b7288185c0f453ccfc74c20099b04b
大小 394 bytes
時間 2023-09-30 19:37:53
作者 yoshy
Log Message

[MOD] プロジェクト間の依存関係、外部パッケージへの依存関係の修正
[UPG] ClearAuLaitのCaptionFormatterの変更に伴う修正

Content

using CleanAuLait.UseCase.Request;
using System;
using TestNarou3.UseCase.Boundary.Interactor;

namespace TestNarou3.UseCase.Request
{
    public record class NarouLoginRequest(
            string NarouID,
            string Password
    ) : UseCaseRequest
    {
        public override Type GetInteractorType()
        {
            return typeof(INarouLoginInteractor);
        }
    }

}