This repository has been archived on 2025-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
Files
KTUSA-PS/KTUSAPS.Data/Model/Vote.cs
Nadegamra a3b4bb2e30 Mostly backend models stuff
Changed some models, did some work on database, created a class diagram.
2021-09-08 20:20:32 +03:00

19 lines
397 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KTUSAPS.Data.Model
{
public class Vote
{
[MaxLength(64)]
public string UserId { get; set; }
public int ProblemId { get; set; }
public PublishedProblem Problem { get; set; }
}
}