mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 21:47:22 +01:00
15 lines
359 B
C#
15 lines
359 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MareSynchronosShared.Models
|
|
{
|
|
public class ForbiddenUploadEntry
|
|
{
|
|
[Key]
|
|
[MaxLength(40)]
|
|
public string Hash { get; set; }
|
|
[MaxLength(100)]
|
|
public string ForbiddenBy { get; set; }
|
|
[Timestamp]
|
|
public byte[] Timestamp { get; set; }
|
|
}
|
|
}
|