using System.ComponentModel.DataAnnotations; namespace StorageServer.Models.Request; public class FileReadModel { [Required] public long FileID { get; set; } }