namespace Azaion.Common.Entities; public class Resource { public Guid Id { get; set; } public string ResourceName { get; set; } = null!; public string DevStage { get; set; } = null!; public string Architecture { get; set; } = null!; public string Version { get; set; } = null!; public string CdnUrl { get; set; } = null!; public string Sha256 { get; set; } = null!; public string EncryptionKey { get; set; } = null!; public long SizeBytes { get; set; } public DateTime CreatedAt { get; set; } }