Implemented models
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace PostFundManagement.Domain.Entities;
|
||||
|
||||
[EntityTypeConfiguration<Configuration.Programme, Programme>]
|
||||
public class Programme : Models.Programme
|
||||
{
|
||||
public virtual User? Creator { get; set; }
|
||||
|
||||
public virtual User? Owner { get; set; }
|
||||
|
||||
public virtual Portfolio? Portfolio { get; set; }
|
||||
|
||||
public virtual Instrument? Instrument { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user