19 lines
533 B
C#
19 lines
533 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace BMA.EHR.Domain.Models.HR
|
|
{
|
|
public class ProfileSalaryOrganization
|
|
{
|
|
[ForeignKey("ProfileSalary"), Comment("ไม่ใช้")]
|
|
public int Id { get; set; }
|
|
|
|
[MaxLength(200)]
|
|
public string Comment { get; set; }
|
|
|
|
// public OrganizationEntity Organization { get; set; }
|
|
|
|
// public ProfileSalary ProfileSalary { get; set; }
|
|
}
|
|
}
|