Files
pfm/PostFundManagement.Domain/Models/Portfolio.cs
T
2026-08-15 15:06:08 +02:00

16 lines
314 B
C#

namespace PostFundManagement.Domain.Models;
public class Portfolio
{
public long Id { get; set; }
public Guid OwnedBy { get; set; }
public Guid CreatedBy { get; set; }
public DateTime CreatedAt { get; set; }
public string? Name { get; set; }
public string? Description { get; set; }
}