Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/FinkiChattery/FinkiChattery.Contracts/Questioning/GetQuestionState/QuestionStateResponse.cs

    rdab7a9b rb25b9ea  
    4040    public class StudentQuestionStateResponse
    4141    {
    42         public StudentQuestionStateResponse(long id, Guid uid, string index, string imageUrl, long reputation)
     42        public StudentQuestionStateResponse(long id, Guid uid, string index, string imageUrl)
    4343        {
    4444            Id = id;
     
    4646            Index = index;
    4747            ImageUrl = imageUrl;
    48             Reputation = reputation;
    4948        }
    5049
     
    5453        public string Index { get; }
    5554        public string ImageUrl { get; }
    56         public long Reputation { get; }
    5755    }
    5856
     
    114112    public class AnswerStudentQuestionStateResponse
    115113    {
    116         public AnswerStudentQuestionStateResponse(long id, Guid uid, string index, string imageUrl, long reputation)
     114        public AnswerStudentQuestionStateResponse(long id, Guid uid, string index, string imageUrl)
    117115        {
    118116            Id = id;
     
    120118            Index = index;
    121119            ImageUrl = imageUrl;
    122             Reputation = reputation;
    123120        }
    124121
     
    128125        public string Index { get; }
    129126        public string ImageUrl { get; }
    130         public long Reputation { get; }
    131127    }
    132128
     
    152148    public class AnswerResponseStudentQuestionStateResponse
    153149    {
    154         public AnswerResponseStudentQuestionStateResponse(long id, Guid uid, string index, string imageUrl, long reputation)
     150        public AnswerResponseStudentQuestionStateResponse(long id, Guid uid, string index, string imageUrl)
    155151        {
    156152            Id = id;
     
    158154            Index = index;
    159155            ImageUrl = imageUrl;
    160             Reputation = reputation;
    161156        }
    162157
     
    166161        public string Index { get; }
    167162        public string ImageUrl { get; }
    168         public long Reputation { get; }
    169163    }
    170164}
Note: See TracChangeset for help on using the changeset viewer.