namespace Purrse.Core.Models; public class SecurityPrice { public Guid Id { get; set; } public Guid SecurityId { get; set; } public DateTime Date { get; set; } public decimal Price { get; set; } public Security Security { get; set; } = null!; }