mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 21:07:21 +01:00
11 lines
244 B
C#
11 lines
244 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MareSynchronosServer.Models
|
|
{
|
|
public class ForbiddenUploadEntry
|
|
{
|
|
[Key]
|
|
public string Hash { get; set; }
|
|
public string ForbiddenBy { get; set; }
|
|
}
|
|
}
|