xref: /aosp_15_r20/external/licenseclassifier/v2/scenarios/134172128 (revision 46c4c49da23cae783fa41bf46525a6505638499a)
1*46c4c49dSIbrahim KanoucheLegacy classifier doesn't detect header
2*46c4c49dSIbrahim KanoucheEXPECTED:Apache-2.0,Copyright
3*46c4c49dSIbrahim Kanouche/**
4*46c4c49dSIbrahim Kanouche * Copyright 2019 Google LLC
5*46c4c49dSIbrahim Kanouche *
6*46c4c49dSIbrahim Kanouche * Licensed under the Apache License, Version 2.0 (the "License");
7*46c4c49dSIbrahim Kanouche * you may not use this file except in compliance with the License.
8*46c4c49dSIbrahim Kanouche * You may obtain a copy of the License at
9*46c4c49dSIbrahim Kanouche *
10*46c4c49dSIbrahim Kanouche *     https://www.apache.org/licenses/LICENSE-2.0
11*46c4c49dSIbrahim Kanouche *
12*46c4c49dSIbrahim Kanouche * Unless required by applicable law or agreed to in writing, software
13*46c4c49dSIbrahim Kanouche * distributed under the License is distributed on an "AS IS" BASIS,
14*46c4c49dSIbrahim Kanouche * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15*46c4c49dSIbrahim Kanouche * See the License for the specific language governing permissions and
16*46c4c49dSIbrahim Kanouche * limitations under the License.
17*46c4c49dSIbrahim Kanouche **/
18*46c4c49dSIbrahim Kanoucheusing leaderboardapp.Models;
19*46c4c49dSIbrahim Kanoucheusing System;
20*46c4c49dSIbrahim Kanoucheusing System.Collections.Generic;
21*46c4c49dSIbrahim Kanoucheusing System.Linq;
22*46c4c49dSIbrahim Kanoucheusing System.Threading.Tasks;
23*46c4c49dSIbrahim Kanouche
24*46c4c49dSIbrahim Kanouchenamespace leaderboardapp
25*46c4c49dSIbrahim Kanouche{
26*46c4c49dSIbrahim Kanouche    public interface IQuestionAnswerRepository
27*46c4c49dSIbrahim Kanouche    {
28*46c4c49dSIbrahim Kanouche        Task<IList<QuestionAnswerModel>> GetQuestionAnswerListAsync();
29*46c4c49dSIbrahim Kanouche    }
30*46c4c49dSIbrahim Kanouche}
31