using System.ComponentModel.DataAnnotations; namespace FileStorageService.www.Data; public class FileHandle { public Guid Id { get; init; } [MaxLength(64)] public required string Name { get; set; } public ICollection FileBlocks { get; } = new List(); }