using System; using System.ComponentModel.DataAnnotations; namespace Remotely.Shared.Models { public class SharedFile { [Key] public string ID { get; set; } = Guid.NewGuid().ToString(); public string FileName { get; set; } public string ContentType { get; set; } public byte[] FileContents { get; set; } public DateTimeOffset Timestamp { get; set; } = DateTimeOffset.Now; public Organization Organization { get; set; } public string OrganizationID { get; set; } } }