18 lines
512 B
C#
18 lines
512 B
C#
namespace FamilyTreeAPI.Entities;
|
|
|
|
public class AppSettings
|
|
{
|
|
public string Secret { get; set; }
|
|
public string SQLConnectionString { get; set; }
|
|
public string ImageFolder { get; set; }
|
|
|
|
public string ImportFolder { get; set; }
|
|
}
|
|
|
|
/*
|
|
entity.HasOne(d => d.Staff)
|
|
.WithMany(p => p.Staffworks)
|
|
.HasForeignKey(d => d.Staffid)
|
|
.HasConstraintName("staffwork_staffid_fkey")
|
|
.OnDelete(DeleteBehavior.ClientCascade);
|
|
*/ |