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