16 lines
314 B
C#
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; }
|
|
} |