Ignore:
Timestamp:
11/04/21 17:01:30 (3 years ago)
Author:
Стојков Марко <mst@…>
Branches:
dev
Children:
caaf82d
Parents:
1e0d869 (diff), b9d7ae5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merged dev

File:
1 moved

Legend:

Unmodified
Added
Removed
  • src/FinkiChattery/FinkiChattery.Persistence/Models/Vote.cs

    r1e0d869 r6901f8b  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
    5 using System.Threading.Tasks;
     1using FinkiChattery.Persistence.Helpers;
    62
    73namespace FinkiChattery.Persistence.Models
    84{
    9     public class Upvote : BaseEntity
     5    public class Vote : BaseEntity
    106    {
     7        public Vote() : base()
     8        {
     9        }
     10
    1111        public long StudentFk { get; set; }
    1212
     
    1616
    1717        public virtual Answer Answer { get; set; }
     18
     19        public VoteType VoteType { get; set; }
    1820    }
    1921}
Note: See TracChangeset for help on using the changeset viewer.