- Created new cache JSON files for rjsmcshtml, rjsmrazor, and rpswa in both net10.0 and net7.0 directories. - Added static web assets build configuration files in both net10.0 and net7.0 directories. - Included build endpoint configurations and cache files for static web assets. - Ensured all new files are properly initialized with relevant properties and hashes.
22 lines
785 B
C#
22 lines
785 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Microsoft.SelfService.Portal.Core.API.Models
|
|
{
|
|
public class BaseJunctionModel
|
|
{
|
|
[Column(Order = 50)]
|
|
//[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
|
|
public DateTime Modified { get; set; } = DateTime.Now;
|
|
[Column(Order = 51)]
|
|
//[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
|
|
public string ModifiedBy { get; set; } = "System";
|
|
|
|
[Column(Order = 52)]
|
|
//[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public DateTime Created { get; set; } = DateTime.Now;
|
|
[Column(Order = 53)]
|
|
//[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public string CreatedBy { get; set; } = "System";
|
|
}
|
|
}
|