Files
studenthousedashboard/StudentHouseDashboard/HouseData/Models/IVotable.cs
2023-03-29 11:29:25 +02:00

19 lines
358 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace StudentHouseDashboard.Models
{
public interface IVotable
{
void UpVote()
{
throw new NotImplementedException();
}
void DownVote()
{
throw new NotImplementedException();
}
}
}