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
Karolis2011 997154efa8 Progresss
2021-12-16 17:33:56 +02:00

21 lines
464 B
C#

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