Files

15 lines
317 B
C#
Raw Permalink Normal View History

2025-08-22 11:55:35 +01:00
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; }
}