- Timestamp:
- 11/04/21 17:01:30 (3 years ago)
- 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. - 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; 1 using FinkiChattery.Persistence.Helpers; 6 2 7 3 namespace FinkiChattery.Persistence.Models 8 4 { 9 public class Upvote : BaseEntity5 public class Vote : BaseEntity 10 6 { 7 public Vote() : base() 8 { 9 } 10 11 11 public long StudentFk { get; set; } 12 12 … … 16 16 17 17 public virtual Answer Answer { get; set; } 18 19 public VoteType VoteType { get; set; } 18 20 } 19 21 }
Note:
See TracChangeset
for help on using the changeset viewer.